diff --git a/ChangeLog b/ChangeLog index 5a15934e76..543fef260d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,14 @@ phpMyAdmin - ChangeLog ====================== -3.4.0.0 (not yet released) +3.5.0.0 (not yet released) ++ rfe #2021981 [interface] Add support for mass prefix change. ++ "up to date" message on main page when current version is up to date + +3.4.1.0 (not yet released) +- bug #3301108 [interface] Synchronize and already configured host + +3.4.0.0 (2011-05-11) + rfe #2890226 [view] Enable VIEW rename + rfe #838637 [privileges] Export a user's privileges - [core] Updated mootools to fix some glitches with Safari. diff --git a/Documentation.html b/Documentation.html index aa3df7f7a5..cee6a4211e 100644 --- a/Documentation.html +++ b/Documentation.html @@ -9,7 +9,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78 -
' . "\n"
@@ -663,7 +663,7 @@ function PMA_mysqlDie($error_message = '', $the_query = '',
if ($exit) {
/**
* If in an Ajax request
- * - avoid displaying a Back link
+ * - avoid displaying a Back link
* - use PMA_ajaxResponse() to transmit the message and exit
*/
if($GLOBALS['is_ajax_request'] == true) {
@@ -781,12 +781,12 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0, $limit_count =
$group_name = $parts[$i] . $sep;
$group_name_full .= $group_name;
- if (!isset($group[$group_name])) {
+ if (! isset($group[$group_name])) {
$group[$group_name] = array();
$group[$group_name]['is' . $sep . 'group'] = true;
$group[$group_name]['tab' . $sep . 'count'] = 1;
$group[$group_name]['tab' . $sep . 'group'] = $group_name_full;
- } elseif (!isset($group[$group_name]['is' . $sep . 'group'])) {
+ } elseif (! isset($group[$group_name]['is' . $sep . 'group'])) {
$table = $group[$group_name];
$group[$group_name] = array();
$group[$group_name][$group_name] = $table;
@@ -801,7 +801,7 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0, $limit_count =
$i++;
}
} else {
- if (!isset($table_groups[$table_name])) {
+ if (! isset($table_groups[$table_name])) {
$table_groups[$table_name] = array();
}
$group =& $table_groups;
@@ -963,7 +963,7 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
* in a string. In some special cases on sql.php, buffering has to be disabled
* and hence we check with $GLOBALS['buffer_message']
*/
- if( $GLOBALS['is_ajax_request'] == true && !isset($GLOBALS['buffer_message']) ) {
+ if( $GLOBALS['is_ajax_request'] == true && ! isset($GLOBALS['buffer_message']) ) {
ob_start();
}
global $cfg;
@@ -1255,7 +1255,7 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
// in the tools div, only display the Inline link when not in ajax
// mode because 1) it currently does not work and 2) we would
- // have two similar mechanisms on the page for the same goal
+ // have two similar mechanisms on the page for the same goal
if ($is_select || $GLOBALS['is_ajax_request'] === false) {
// see in js/functions.js the jQuery code attached to id inline_edit
// document.write conflicts with jQuery, hence used $().append()
@@ -1263,7 +1263,7 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
"//" .
+ "\" class=\"inline_edit_sql\">" .
PMA_escapeJsString(__('Inline')) .
"]');\n" .
"//]]>\n" .
@@ -1280,7 +1280,7 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
// If we are in an Ajax request, we have most probably been called in
// PMA_ajaxResponse(). Hence, collect the buffer contents and return it
// to PMA_ajaxResponse(), which will encode it for JSON.
- if( $GLOBALS['is_ajax_request'] == true && !isset($GLOBALS['buffer_message']) ) {
+ if( $GLOBALS['is_ajax_request'] == true && ! isset($GLOBALS['buffer_message']) ) {
$buffer_contents = ob_get_contents();
ob_end_clean();
return $buffer_contents;
@@ -2001,7 +2001,7 @@ function PMA_checkParameters($params, $die = true, $request = true)
{
global $checked_special;
- if (!isset($checked_special)) {
+ if (! isset($checked_special)) {
$checked_special = false;
}
@@ -2014,7 +2014,7 @@ function PMA_checkParameters($params, $die = true, $request = true)
$checked_special = true;
}
- if (!isset($GLOBALS[$param])) {
+ if (! isset($GLOBALS[$param])) {
$error_message .= $reported_script_name
. ': Missing parameter: ' . $param
. PMA_showDocu('faqmissingparameters')
@@ -2112,7 +2112,7 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force
. PMA_backquote($meta->orgname) . ' ';
} // end if... else...
- if (!isset($row[$i]) || is_null($row[$i])) {
+ if (! isset($row[$i]) || is_null($row[$i])) {
$condition .= 'IS NULL AND';
} else {
// timestamp is numeric on some MySQL 4.1
@@ -2434,8 +2434,8 @@ function PMA_userDir($dir)
*/
function PMA_getDbLink($database = null)
{
- if (!strlen($database)) {
- if (!strlen($GLOBALS['db'])) {
+ if (! strlen($database)) {
+ if (! strlen($GLOBALS['db'])) {
return '';
}
$database = $GLOBALS['db'];
diff --git a/libraries/core.lib.php b/libraries/core.lib.php
index 76d2c86126..1d0f3a6090 100644
--- a/libraries/core.lib.php
+++ b/libraries/core.lib.php
@@ -386,7 +386,7 @@ function PMA_array_merge_recursive()
break;
case 2 :
$args = func_get_args();
- if (!is_array($args[0]) || !is_array($args[1])) {
+ if (! is_array($args[0]) || ! is_array($args[1])) {
return $args[1];
}
foreach ($args[1] as $key2 => $value2) {
@@ -603,7 +603,7 @@ function PMA_array_read($path, $array, $default = null)
$keys = explode('/', $path);
$value =& $array;
foreach ($keys as $key) {
- if (!isset($value[$key])) {
+ if (! isset($value[$key])) {
return $default;
}
$value =& $value[$key];
@@ -624,7 +624,7 @@ function PMA_array_write($path, &$array, $value)
$last_key = array_pop($keys);
$a =& $array;
foreach ($keys as $key) {
- if (!isset($a[$key])) {
+ if (! isset($a[$key])) {
$a[$key] = array();
}
$a =& $a[$key];
@@ -650,7 +650,7 @@ function PMA_array_remove($path, &$array)
$found = true;
// go as deep as required or possible
foreach ($keys as $key) {
- if (!isset($path[$depth][$key])) {
+ if (! isset($path[$depth][$key])) {
$found = false;
break;
}
@@ -665,7 +665,7 @@ function PMA_array_remove($path, &$array)
// remove empty nested arrays
for (; $depth >= 0; $depth--) {
- if (!isset($path[$depth+1]) || count($path[$depth+1]) == 0) {
+ if (! isset($path[$depth+1]) || count($path[$depth+1]) == 0) {
unset($path[$depth][$keys[$depth]]);
} else {
break;
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index 22d9671e97..be8d9f5f89 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -196,7 +196,7 @@ function PMA_usort_comparison_callback($a, $b)
$sorter = 'strcasecmp';
}
/* No sorting when key is not present */
- if (!isset($a[$GLOBALS['callback_sort_by']]) || ! isset($b[$GLOBALS['callback_sort_by']])) {
+ if (! isset($a[$GLOBALS['callback_sort_by']]) || ! isset($b[$GLOBALS['callback_sort_by']])) {
return 0;
}
// produces f.e.:
diff --git a/libraries/db_info.inc.php b/libraries/db_info.inc.php
index d8610f29a5..f8bb5a00a0 100644
--- a/libraries/db_info.inc.php
+++ b/libraries/db_info.inc.php
@@ -152,7 +152,7 @@ if (true === $cfg['SkipLockedTables']) {
null, PMA_DBI_QUERY_STORE);
if ($db_info_result && PMA_DBI_num_rows($db_info_result) > 0) {
while ($tmp = PMA_DBI_fetch_row($db_info_result)) {
- if (!isset($sot_cache[$tmp[0]])) {
+ if (! isset($sot_cache[$tmp[0]])) {
$sts_result = PMA_DBI_query(
'SHOW TABLE STATUS FROM ' . PMA_backquote($db)
. ' LIKE \'' . addslashes($tmp[0]) . '\';');
@@ -160,7 +160,7 @@ if (true === $cfg['SkipLockedTables']) {
PMA_DBI_free_result($sts_result);
unset($sts_result);
- if (!isset($sts_tmp['Type']) && isset($sts_tmp['Engine'])) {
+ if (! isset($sts_tmp['Type']) && isset($sts_tmp['Engine'])) {
$sts_tmp['Type'] =& $sts_tmp['Engine'];
}
diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php
index 10e8178d27..88c80af181 100644
--- a/libraries/display_export.lib.php
+++ b/libraries/display_export.lib.php
@@ -65,7 +65,7 @@ echo '' .
// If the export method was not set, the default is quick
if(isset($_GET['export_method'])) {
$cfg['Export']['method'] = $_GET['export_method'];
-} elseif(!isset($cfg['Export']['method'])) {
+} elseif(! isset($cfg['Export']['method'])) {
$cfg['Export']['method'] = 'quick';
}
// The export method (quick, custom or custom-no-form)
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index 78b4bb6850..6fa8e9be5d 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -1091,7 +1091,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
}
}
- if (!is_array($map)) {
+ if (! is_array($map)) {
$map = array();
}
$row_no = 0;
@@ -1272,7 +1272,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
$condition_field = false;
}
- if ($_SESSION['tmp_user_values']['disp_direction'] == 'vertical' && (!isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1'))) {
+ if ($_SESSION['tmp_user_values']['disp_direction'] == 'vertical' && (! isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1'))) {
// the row number corresponds to a data row, not HTML table row
$class .= ' row_' . $row_no;
if ($GLOBALS['cfg']['BrowsePointerEnable'] == true) {
@@ -1328,7 +1328,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
// will show both fields NULL even if only one is NULL,
// so use the $pointer
- if (!isset($row[$i]) || is_null($row[$i])) {
+ if (! isset($row[$i]) || is_null($row[$i])) {
$vertical_display['data'][$row_no][$i] = PMA_buildNullDisplay($class, $condition_field);
} elseif ($row[$i] != '') {
@@ -1351,7 +1351,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
$class = str_replace('inline_edit', '', $class);
if (stristr($field_flags, 'BINARY')) {
- if (!isset($row[$i]) || is_null($row[$i])) {
+ if (! isset($row[$i]) || is_null($row[$i])) {
$vertical_display['data'][$row_no][$i] = PMA_buildNullDisplay($class, $condition_field);
} else {
// for blobstreaming
@@ -1367,7 +1367,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
}
// not binary:
} else {
- if (!isset($row[$i]) || is_null($row[$i])) {
+ if (! isset($row[$i]) || is_null($row[$i])) {
$vertical_display['data'][$row_no][$i] = PMA_buildNullDisplay($class, $condition_field);
} elseif ($row[$i] != '') {
// if a transform function for blob is set, none of these replacements will be made
@@ -1395,7 +1395,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
// n o t n u m e r i c a n d n o t B L O B
} else {
- if (!isset($row[$i]) || is_null($row[$i])) {
+ if (! isset($row[$i]) || is_null($row[$i])) {
$vertical_display['data'][$row_no][$i] = PMA_buildNullDisplay($class, $condition_field);
} elseif ($row[$i] != '') {
// support blanks in the key
@@ -1477,7 +1477,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
// 4. Gather links of del_urls and edit_urls in an array for later
// output
- if (!isset($vertical_display['edit'][$row_no])) {
+ if (! isset($vertical_display['edit'][$row_no])) {
$vertical_display['edit'][$row_no] = '';
$vertical_display['copy'][$row_no] = '';
$vertical_display['delete'][$row_no] = '';
@@ -1563,7 +1563,7 @@ function PMA_displayVerticalTable()
// Displays "edit" link at top if required
if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && is_array($vertical_display['edit']) && (count($vertical_display['edit']) > 0 || !empty($vertical_display['textbtn']))) {
echo '' . "\n";
- if (!is_array($vertical_display['row_delete'])) {
+ if (! is_array($vertical_display['row_delete'])) {
echo $vertical_display['textbtn'];
}
$foo_counter = 0;
@@ -1581,7 +1581,7 @@ function PMA_displayVerticalTable()
// Displays "copy" link at top if required
if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && is_array($vertical_display['copy']) && (count($vertical_display['copy']) > 0 || !empty($vertical_display['textbtn']))) {
echo ' ' . "\n";
- if (!is_array($vertical_display['row_delete'])) {
+ if (! is_array($vertical_display['row_delete'])) {
echo $vertical_display['textbtn'];
}
$foo_counter = 0;
@@ -1599,7 +1599,7 @@ function PMA_displayVerticalTable()
// Displays "delete" link at top if required
if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && is_array($vertical_display['delete']) && (count($vertical_display['delete']) > 0 || !empty($vertical_display['textbtn']))) {
echo ' ' . "\n";
- if (!is_array($vertical_display['edit']) && !is_array($vertical_display['row_delete'])) {
+ if (! is_array($vertical_display['edit']) && ! is_array($vertical_display['row_delete'])) {
echo $vertical_display['textbtn'];
}
$foo_counter = 0;
@@ -1652,7 +1652,7 @@ function PMA_displayVerticalTable()
// Displays "edit" link at bottom if required
if ($GLOBALS['cfg']['ModifyDeleteAtRight'] && is_array($vertical_display['edit']) && (count($vertical_display['edit']) > 0 || !empty($vertical_display['textbtn']))) {
echo ' ' . "\n";
- if (!is_array($vertical_display['row_delete'])) {
+ if (! is_array($vertical_display['row_delete'])) {
echo $vertical_display['textbtn'];
}
$foo_counter = 0;
@@ -1670,7 +1670,7 @@ function PMA_displayVerticalTable()
// Displays "copy" link at bottom if required
if ($GLOBALS['cfg']['ModifyDeleteAtRight'] && is_array($vertical_display['copy']) && (count($vertical_display['copy']) > 0 || !empty($vertical_display['textbtn']))) {
echo ' ' . "\n";
- if (!is_array($vertical_display['row_delete'])) {
+ if (! is_array($vertical_display['row_delete'])) {
echo $vertical_display['textbtn'];
}
$foo_counter = 0;
@@ -1688,7 +1688,7 @@ function PMA_displayVerticalTable()
// Displays "delete" link at bottom if required
if ($GLOBALS['cfg']['ModifyDeleteAtRight'] && is_array($vertical_display['delete']) && (count($vertical_display['delete']) > 0 || !empty($vertical_display['textbtn']))) {
echo ' ' . "\n";
- if (!is_array($vertical_display['edit']) && !is_array($vertical_display['row_delete'])) {
+ if (! is_array($vertical_display['edit']) && ! is_array($vertical_display['row_delete'])) {
echo $vertical_display['textbtn'];
}
$foo_counter = 0;
@@ -2070,7 +2070,7 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
PMA_showMessage($message, $sql_query, 'success');
- } elseif (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
+ } elseif (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
PMA_showMessage(__('Your SQL query has been executed successfully'), $sql_query, 'success');
}
@@ -2090,7 +2090,7 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
if ($is_display['nav_bar'] == '1') {
PMA_displayTableNavigation($pos_next, $pos_prev, $sql_query, 'top_direction_dropdown');
echo "\n";
- } elseif (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
+ } elseif (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
echo "\n" . '
' . "\n";
}
@@ -2212,12 +2212,12 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
if ($is_display['nav_bar'] == '1') {
echo '
' . "\n";
PMA_displayTableNavigation($pos_next, $pos_prev, $sql_query, 'bottom_direction_dropdown');
- } elseif (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
+ } elseif (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
echo "\n" . '
' . "\n";
}
// 6. ----- Displays "Query results operations"
- if (!isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
+ if (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') {
PMA_displayResultsOperations($the_disp_mode, $analyzed_sql);
}
} // end of the 'PMA_displayTable()' function
@@ -2298,8 +2298,8 @@ function PMA_displayResultsOperations($the_disp_mode, $analyzed_sql) {
// If the parser found a PROCEDURE clause
// (most probably PROCEDURE ANALYSE()) it makes no sense to
// display the Export link).
- if (isset($analyzed_sql[0]) && $analyzed_sql[0]['querytype'] == 'SELECT' && !isset($printview) && ! isset($analyzed_sql[0]['queryflags']['procedure'])) {
- if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name']) && !isset($analyzed_sql[0]['table_ref'][1]['table_true_name'])) {
+ if (isset($analyzed_sql[0]) && $analyzed_sql[0]['querytype'] == 'SELECT' && ! isset($printview) && ! isset($analyzed_sql[0]['queryflags']['procedure'])) {
+ if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name']) && ! isset($analyzed_sql[0]['table_ref'][1]['table_true_name'])) {
$_url_params['single_table'] = 'true';
}
if (!$header_shown) {
diff --git a/libraries/footer.inc.php b/libraries/footer.inc.php
index f5385d5156..5a66351664 100644
--- a/libraries/footer.inc.php
+++ b/libraries/footer.inc.php
@@ -166,7 +166,7 @@ if (window.parent.frame_content) {
}
// Link to itself to replicate windows including frameset
-if (!isset($GLOBALS['checked_special'])) {
+if (! isset($GLOBALS['checked_special'])) {
$GLOBALS['checked_special'] = false;
}
diff --git a/libraries/header.inc.php b/libraries/header.inc.php
index 807ec0af20..f6c3dcd14c 100644
--- a/libraries/header.inc.php
+++ b/libraries/header.inc.php
@@ -30,7 +30,7 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) {
// if database storage for user preferences is transient, offer to load
// exported settings from localStorage (detection will be done in JavaScript)
$userprefs_offer_import = $GLOBALS['PMA_Config']->get('user_preferences') == 'session'
- && !isset($_SESSION['userprefs_autoload']);
+ && ! isset($_SESSION['userprefs_autoload']);
if ($userprefs_offer_import) {
$GLOBALS['js_include'][] = 'config.js';
}
@@ -123,7 +123,7 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) {
PMA_generate_common_url($GLOBALS['db']),
htmlspecialchars($GLOBALS['db']),
__('Database'),
- 's_tbl.png');
+ 's_db.png');
// if the table is being dropped, $_REQUEST['purge'] is set
// (it always contains "1")
// so do not display the table name in upper div
@@ -143,7 +143,7 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) {
* @uses $show_comment from libraries/tbl_info.inc.php
* @uses $GLOBALS['avoid_show_comment'] from tbl_relation.php
*/
- if (!empty($show_comment) && !isset($GLOBALS['avoid_show_comment'])) {
+ if (!empty($show_comment) && ! isset($GLOBALS['avoid_show_comment'])) {
if (strstr($show_comment, '; InnoDB free')) {
$show_comment = preg_replace('@; InnoDB free:.*?$@', '', $show_comment);
}
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index a7d0b5ef93..0c77f5419c 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -127,7 +127,7 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false)
}
$msg = '# ';
if ($result === FALSE) { // execution failed
- if (!isset($my_die)) {
+ if (! isset($my_die)) {
$my_die = array();
}
$my_die[] = array('sql' => $import_run_buffer['full'], 'error' => PMA_DBI_getError());
@@ -697,7 +697,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
/**
* This is the first row to be analyzed
*/
- elseif (!isset($last_cumulative_type) || $last_cumulative_type == NONE) {
+ elseif (! isset($last_cumulative_type) || $last_cumulative_type == NONE) {
return $curr_size;
}
/**
diff --git a/libraries/mult_submits.inc.php b/libraries/mult_submits.inc.php
index 270ab71f0c..7c8f27cdc9 100644
--- a/libraries/mult_submits.inc.php
+++ b/libraries/mult_submits.inc.php
@@ -29,6 +29,9 @@ if (! empty($submit_mult)
} else {
$selected = $selected_tbl;
switch ($submit_mult) {
+ case 'add_prefix_tbl':
+ case 'replace_prefix_tbl':
+ case 'copy_tbl_change_prefix':
case 'drop_db':
case 'drop_tbl':
case 'empty_tbl':
@@ -238,16 +241,50 @@ if (!empty($submit_mult) && !empty($what)) {
-
-
+
+
+
+
+
+
+
+
+ ';
@@ -168,7 +168,7 @@ function PMA_pluginGetChoice($section, $name, &$list, $cfgname = NULL)
foreach ($list as $plugin_name => $val) {
$ret .= '' . "\n";
diff --git a/libraries/schema/Dia_Relation_Schema.class.php b/libraries/schema/Dia_Relation_Schema.class.php
index e58381e91f..a7813078a8 100644
--- a/libraries/schema/Dia_Relation_Schema.class.php
+++ b/libraries/schema/Dia_Relation_Schema.class.php
@@ -680,7 +680,7 @@ class PMA_Dia_Relation_Schema extends PMA_Export_Relation_Schema
$dia->startDiaDoc($this->paper,$this->_topMargin,$this->_bottomMargin,$this->_leftMargin,$this->_rightMargin,$this->orientation);
$alltables = $this->getAllTables($db,$this->pageNumber);
foreach ($alltables as $table) {
- if (!isset($this->tables[$table])) {
+ if (! isset($this->tables[$table])) {
$this->tables[$table] = new Table_Stats($table, $this->pageNumber, $this->showKeys);
}
}
@@ -725,10 +725,10 @@ class PMA_Dia_Relation_Schema extends PMA_Export_Relation_Schema
*/
private function _addRelation($masterTable, $masterField, $foreignTable, $foreignField, $showKeys)
{
- if (!isset($this->tables[$masterTable])) {
+ if (! isset($this->tables[$masterTable])) {
$this->tables[$masterTable] = new Table_Stats($masterTable, $this->pageNumber, $showKeys);
}
- if (!isset($this->tables[$foreignTable])) {
+ if (! isset($this->tables[$foreignTable])) {
$this->tables[$foreignTable] = new Table_Stats($foreignTable, $this->pageNumber, $showKeys);
}
$this->_relations[] = new Relation_Stats($this->tables[$masterTable], $masterField, $this->tables[$foreignTable], $foreignField);
diff --git a/libraries/schema/Eps_Relation_Schema.class.php b/libraries/schema/Eps_Relation_Schema.class.php
index 5435db4476..edea703943 100644
--- a/libraries/schema/Eps_Relation_Schema.class.php
+++ b/libraries/schema/Eps_Relation_Schema.class.php
@@ -759,7 +759,7 @@ class PMA_Eps_Relation_Schema extends PMA_Export_Relation_Schema
$alltables = $this->getAllTables($db,$this->pageNumber);
foreach ($alltables AS $table) {
- if (!isset($this->tables[$table])) {
+ if (! isset($this->tables[$table])) {
$this->tables[$table] = new Table_Stats($table,$eps->getFont(),$eps->getFontSize(), $this->pageNumber, $this->_tablewidth, $this->showKeys, $this->tableDimension);
}
@@ -809,10 +809,10 @@ class PMA_Eps_Relation_Schema extends PMA_Export_Relation_Schema
*/
private function _addRelation($masterTable,$font,$fontSize, $masterField, $foreignTable, $foreignField, $showInfo)
{
- if (!isset($this->tables[$masterTable])) {
+ if (! isset($this->tables[$masterTable])) {
$this->tables[$masterTable] = new Table_Stats($masterTable, $font, $fontSize, $this->pageNumber, $this->_tablewidth, false, $showInfo);
}
- if (!isset($this->tables[$foreignTable])) {
+ if (! isset($this->tables[$foreignTable])) {
$this->tables[$foreignTable] = new Table_Stats($foreignTable,$font,$fontSize,$this->pageNumber, $this->_tablewidth, false, $showInfo);
}
$this->_relations[] = new Relation_Stats($this->tables[$masterTable], $masterField, $this->tables[$foreignTable], $foreignField);
diff --git a/libraries/schema/Pdf_Relation_Schema.class.php b/libraries/schema/Pdf_Relation_Schema.class.php
index 607853709b..ef602641a6 100644
--- a/libraries/schema/Pdf_Relation_Schema.class.php
+++ b/libraries/schema/Pdf_Relation_Schema.class.php
@@ -882,7 +882,7 @@ class PMA_Pdf_Relation_Schema extends PMA_Export_Relation_Schema
/* snip */
foreach ($alltables as $table) {
- if (!isset($this->tables[$table])) {
+ if (! isset($this->tables[$table])) {
$this->tables[$table] = new Table_Stats($table, $this->_ff, $this->pageNumber, $this->_tablewidth, $this->showKeys, $this->tableDimension);
}
if ($this->sameWide) {
@@ -962,11 +962,11 @@ class PMA_Pdf_Relation_Schema extends PMA_Export_Relation_Schema
*/
private function _addRelation($masterTable, $masterField, $foreignTable, $foreignField, $showInfo)
{
- if (!isset($this->tables[$masterTable])) {
+ if (! isset($this->tables[$masterTable])) {
$this->tables[$masterTable] = new Table_Stats($masterTable, $this->_ff, $this->pageNumber, $this->_tablewidth, false, $showInfo);
$this->_setMinMax($this->tables[$masterTable]);
}
- if (!isset($this->tables[$foreignTable])) {
+ if (! isset($this->tables[$foreignTable])) {
$this->tables[$foreignTable] = new Table_Stats($foreignTable, $this->_ff, $this->pageNumber, $this->_tablewidth, false, $showInfo);
$this->_setMinMax($this->tables[$foreignTable]);
}
@@ -1305,7 +1305,7 @@ class PMA_Pdf_Relation_Schema extends PMA_Export_Relation_Schema
if ($zerofill) {
$attribute = 'UNSIGNED ZEROFILL';
}
- if (!isset($row['Default'])) {
+ if (! isset($row['Default'])) {
if ($row['Null'] != '' && $row['Null'] != 'NO') {
$row['Default'] = 'NULL';
}
diff --git a/libraries/schema/Svg_Relation_Schema.class.php b/libraries/schema/Svg_Relation_Schema.class.php
index afafda7fb6..0f6b55bd4c 100644
--- a/libraries/schema/Svg_Relation_Schema.class.php
+++ b/libraries/schema/Svg_Relation_Schema.class.php
@@ -742,7 +742,7 @@ class PMA_Svg_Relation_Schema extends PMA_Export_Relation_Schema
$alltables = $this->getAllTables($db,$this->pageNumber);
foreach ($alltables AS $table) {
- if (!isset($this->tables[$table])) {
+ if (! isset($this->tables[$table])) {
$this->tables[$table] = new Table_Stats($table,$svg->getFont(),$svg->getFontSize(), $this->pageNumber, $this->_tablewidth, $this->showKeys, $this->tableDimension);
}
@@ -805,11 +805,11 @@ class PMA_Svg_Relation_Schema extends PMA_Export_Relation_Schema
*/
private function _addRelation($masterTable,$font,$fontSize, $masterField, $foreignTable, $foreignField, $showInfo)
{
- if (!isset($this->tables[$masterTable])) {
+ if (! isset($this->tables[$masterTable])) {
$this->tables[$masterTable] = new Table_Stats($masterTable, $font, $fontSize, $this->pageNumber, $this->_tablewidth, false, $showInfo);
$this->_setMinMax($this->tables[$masterTable]);
}
- if (!isset($this->tables[$foreignTable])) {
+ if (! isset($this->tables[$foreignTable])) {
$this->tables[$foreignTable] = new Table_Stats($foreignTable,$font,$fontSize,$this->pageNumber, $this->_tablewidth, false, $showInfo);
$this->_setMinMax($this->tables[$foreignTable]);
}
diff --git a/libraries/schema/User_Schema.class.php b/libraries/schema/User_Schema.class.php
index fbec138de0..7e8dbfb205 100644
--- a/libraries/schema/User_Schema.class.php
+++ b/libraries/schema/User_Schema.class.php
@@ -222,7 +222,7 @@ class PMA_User_Schema
* Display WYSIWYG parts
*/
- if (!isset($_POST['with_field_names']) && !isset($_POST['showwysiwyg'])) {
+ if (! isset($_POST['with_field_names']) && ! isset($_POST['showwysiwyg'])) {
$with_field_names = TRUE;
}
$this->_displayScratchboardTables($array_sh_page);
@@ -783,10 +783,10 @@ class PMA_User_Schema
$arrvalue = 'c_table_' . $i;
global $$arrvalue;
$arrvalue = $$arrvalue;
- if (!isset($arrvalue['x']) || $arrvalue['x'] == '') {
+ if (! isset($arrvalue['x']) || $arrvalue['x'] == '') {
$arrvalue['x'] = 0;
}
- if (!isset($arrvalue['y']) || $arrvalue['y'] == '') {
+ if (! isset($arrvalue['y']) || $arrvalue['y'] == '') {
$arrvalue['y'] = 0;
}
if (isset($arrvalue['name']) && $arrvalue['name'] != '--') {
diff --git a/libraries/schema/Visio_Relation_Schema.class.php b/libraries/schema/Visio_Relation_Schema.class.php
index ab45b13b9c..a9be6227aa 100644
--- a/libraries/schema/Visio_Relation_Schema.class.php
+++ b/libraries/schema/Visio_Relation_Schema.class.php
@@ -505,7 +505,7 @@ class PMA_Visio_Relation_Schema extends PMA_Export_Relation_Schema
$alltables = $this->getAllTables($db,$this->pageNumber);
foreach ($alltables as $table) {
- if (!isset($this->tables[$table])) {
+ if (! isset($this->tables[$table])) {
$this->tables[$table] = new Table_Stats($table, $this->pageNumber, $this->showKeys);
}
}
@@ -550,10 +550,10 @@ class PMA_Visio_Relation_Schema extends PMA_Export_Relation_Schema
*/
private function _addRelation($masterTable, $masterField, $foreignTable, $foreignField, $showKeys)
{
- if (!isset($this->tables[$masterTable])) {
+ if (! isset($this->tables[$masterTable])) {
$this->tables[$masterTable] = new Table_Stats($masterTable, $this->pageNumber, $showKeys);
}
- if (!isset($this->tables[$foreignTable])) {
+ if (! isset($this->tables[$foreignTable])) {
$this->tables[$foreignTable] = new Table_Stats($foreignTable, $this->pageNumber, $showKeys);
}
$this->_relations[] = new Relation_Stats($this->tables[$masterTable], $masterField, $this->tables[$foreignTable], $foreignField);
diff --git a/libraries/server_links.inc.php b/libraries/server_links.inc.php
index 81962699d3..b8b4dcdb0a 100644
--- a/libraries/server_links.inc.php
+++ b/libraries/server_links.inc.php
@@ -27,7 +27,7 @@ if (!$GLOBALS['is_ajax_request']) {
/**
* Put something in $sub_part
*/
- if (!isset($sub_part)) {
+ if (! isset($sub_part)) {
$sub_part = '';
}
diff --git a/libraries/session.inc.php b/libraries/session.inc.php
index 4f8caec6c4..465e3f0332 100644
--- a/libraries/session.inc.php
+++ b/libraries/session.inc.php
@@ -95,7 +95,7 @@ if (! isset($_COOKIE[$session_name])) {
* Token which is used for authenticating access queries.
* (we use "space PMA_token space" to prevent overwriting)
*/
-if (!isset($_SESSION[' PMA_token '])) {
+if (! isset($_SESSION[' PMA_token '])) {
$_SESSION[' PMA_token '] = md5(uniqid(rand(), true));
}
diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php
index cbad1d6753..5000f4c189 100644
--- a/libraries/sqlparser.lib.php
+++ b/libraries/sqlparser.lib.php
@@ -46,7 +46,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
if (!defined('TESTSUITE')) {
require_once './libraries/mysql_charsets.lib.php';
}
- if (!isset($mysql_charsets)) {
+ if (! isset($mysql_charsets)) {
$mysql_charsets = array();
$mysql_charsets_count = 0;
$mysql_collations_flat = array();
@@ -244,9 +244,10 @@ if (! defined('PMA_MINIMUM_COMMON')) {
6 => '<>',
7 => '>=',
8 => '>>',
- 9 => '||'
+ 9 => '||',
+ 10 => '==',
);
- $allpunct_list_pair_size = 10; //count($allpunct_list_pair);
+ $allpunct_list_pair_size = 11; //count($allpunct_list_pair);
$quote_list = '\'"`';
$arraysize = 0;
@@ -828,7 +829,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
*/
function PMA_SQP_analyze($arr)
{
- if ($arr == array() || !isset($arr['len'])) {
+ if ($arr == array() || ! isset($arr['len'])) {
return array();
}
$result = array();
@@ -2090,7 +2091,7 @@ if (! defined('PMA_MINIMUM_COMMON')) {
{
//DEBUG echo 'in Format'; print_r($arr); echo '
';
// then check for an array
- if (!is_array($arr)) {
+ if (! is_array($arr)) {
return htmlspecialchars($arr);
}
// first check for the SQL parser having hit an error
diff --git a/libraries/tbl_info.inc.php b/libraries/tbl_info.inc.php
index 00c990413f..ac3a26f95c 100644
--- a/libraries/tbl_info.inc.php
+++ b/libraries/tbl_info.inc.php
@@ -102,7 +102,7 @@ if ($showtable) {
}
}
// we need explicit DEFAULT value here (different from '0')
- $pack_keys = (!isset($pack_keys) || strlen($pack_keys) == 0) ? 'DEFAULT' : $pack_keys;
+ $pack_keys = (! isset($pack_keys) || strlen($pack_keys) == 0) ? 'DEFAULT' : $pack_keys;
unset($create_options, $each_create_option);
} // end if
?>
diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php
index 54e9d1d9d4..395fa7be95 100644
--- a/libraries/tbl_properties.inc.php
+++ b/libraries/tbl_properties.inc.php
@@ -378,7 +378,7 @@ for ($i = 0; $i < $num_fields; $i++) {
* having NULL enabled does not implicit having Default with NULL
*
if (isset($row)
- && !isset($row['Default']) && isset($row['Null']) && $row['Null'] == 'YES') {
+ && ! isset($row['Default']) && isset($row['Null']) && $row['Null'] == 'YES') {
$row['Default'] = 'NULL';
}
*/
diff --git a/libraries/transformations/generator.sh b/libraries/transformations/generator.sh
old mode 100644
new mode 100755
diff --git a/libraries/transformations/template_generator.sh b/libraries/transformations/template_generator.sh
old mode 100644
new mode 100755
diff --git a/libraries/transformations/template_generator_mimetype.sh b/libraries/transformations/template_generator_mimetype.sh
old mode 100644
new mode 100755
diff --git a/libraries/user_preferences.inc.php b/libraries/user_preferences.inc.php
index 2aad2e63a9..7d1a2d7e12 100644
--- a/libraries/user_preferences.inc.php
+++ b/libraries/user_preferences.inc.php
@@ -15,7 +15,7 @@ require './libraries/server_links.inc.php';
// build user preferences menu
$form_param = filter_input(INPUT_GET, 'form');
-if (!isset($forms[$form_param])) {
+if (! isset($forms[$form_param])) {
$forms_keys = array_keys($forms);
$form_param = array_shift($forms_keys);
}
@@ -64,7 +64,7 @@ $msg->display();
// warn about using session storage for settings
$cfgRelation = PMA_getRelationsParam();
-if (!$cfgRelation['userconfigwork']) {
+if (! $cfgRelation['userconfigwork']) {
$msg = __('Your preferences will be saved for current session only. Storing them permanently requires %sphpMyAdmin configuration storage%s.');
$msg = PMA_sanitize(sprintf($msg, '[a@./Documentation.html#linked-tables@_blank]', '[/a]'));
PMA_Message::notice($msg)->display();
diff --git a/libraries/user_preferences.lib.php b/libraries/user_preferences.lib.php
index 6c48116d6f..3fb8c1b1d1 100644
--- a/libraries/user_preferences.lib.php
+++ b/libraries/user_preferences.lib.php
@@ -49,9 +49,9 @@ function PMA_userprefs_pageinit()
function PMA_load_userprefs()
{
$cfgRelation = PMA_getRelationsParam();
- if (!$cfgRelation['userconfigwork']) {
+ if (! $cfgRelation['userconfigwork']) {
// no pmadb table, use session storage
- if (!isset($_SESSION['userconfig'])) {
+ if (! isset($_SESSION['userconfig'])) {
$_SESSION['userconfig'] = array(
'db' => array(),
'ts' => time());
@@ -104,7 +104,7 @@ function PMA_save_userprefs(array $config_array)
? $GLOBALS['server']
: $GLOBALS['cfg']['ServerDefault'];
$cache_key = 'server_' . $server;
- if (!$cfgRelation['userconfigwork']) {
+ if (! $cfgRelation['userconfigwork']) {
// no pmadb table, use session storage
$_SESSION['userconfig'] = array(
'db' => $config_array,
@@ -175,7 +175,7 @@ function PMA_apply_userprefs(array $config_data)
$whitelist['Server/hide_db'] = true;
$whitelist['Server/only_db'] = true;
foreach ($config_data as $path => $value) {
- if (!isset($whitelist[$path]) || isset($blacklist[$path])) {
+ if (! isset($whitelist[$path]) || isset($blacklist[$path])) {
continue;
}
PMA_array_write($path, $cfg, $value);
diff --git a/main.php b/main.php
index c7c25bc41e..d69b4bbd72 100644
--- a/main.php
+++ b/main.php
@@ -292,7 +292,7 @@ if (file_exists('./config')) {
*/
if ($server > 0) {
$cfgRelation = PMA_getRelationsParam();
- if(!$cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
+ if(! $cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
$message = PMA_Message::notice(__('The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click %shere%s.'));
$message->addParam('', false);
$message->addParam('', false);
diff --git a/pmd/scripts/move.js b/pmd/scripts/move.js
index b2f99ee431..1ce18a17ba 100644
--- a/pmd/scripts/move.js
+++ b/pmd/scripts/move.js
@@ -6,6 +6,54 @@
/**
* init
*/
+
+
+ var _change = 0; // variable to track any change in designer layout.
+ var _staying = 0; // variable to check if the user stayed after seeing the confirmation prompt.
+
+// Below is the function to change the href attributes to '#' while the href script is called using
+// the onclick event. It fixes the Internet Explorer issue with href.
+
+ $(document).ready(function(){
+ $('a').filter(function(){
+ return ( /^javascript\:/i).test($(this).attr('href'));
+ }).each(function(){
+ var hrefscript = $(this).attr('href');
+ hrefscript = hrefscript.substr(11);
+ $(this).data('hrefscript', hrefscript);
+ }).click(function(){
+ var hrefscript = $(this).data('hrefscript');
+ eval (hrefscript);
+ return false;
+ }).attr('href', '#');
+});
+
+// Below is the function to bind onbeforeunload events with the content_frame as well as the top window.
+
+ $(document).ready(function(){
+ $(window).bind('beforeunload', function(){ // onbeforeunload for the frame window.
+ if (_change == 1 && _staying == 0)
+ return PMA_messages['strLeavingDesigner'];
+ else if (_change == 1 && _staying == 1)
+ _staying = 0;
+ });
+ $(window).unload(function(){
+ _change = 0;
+ });
+ window.top.onbeforeunload = function(){ // onbeforeunload for the browser main window.
+ if (_change == 1 && _staying == 0){
+ _staying = 1; // Helps if the user stays on the page as there
+ setTimeout('make_zero();', 100); // is no other way of knowing whether the user stayed or not.
+ return PMA_messages['strLeavingDesigner'];
+ }
+ };
+});
+
+ function make_zero(){ // Function called if the user stays after seeing the confirmation prompt.
+ _staying = 0;
+}
+
+
var dx, dy, dy2;
var cur_click;
// update in Main()
@@ -95,6 +143,7 @@ function MouseMove(e)
//window.status = "X = "+ Glob_X + " Y = "+ Glob_Y;
if (cur_click != null) {
+ _change = 1;
var mGx = Glob_X - dx;
var mGy = Glob_Y - dy;
mGx = mGx > 0 ? mGx : 0;
@@ -448,6 +497,7 @@ function Get_url_pos()
function Save2()
{
+ _change = 0;
var poststr = 'IS_AJAX=1&server='+server+'&db=' + db + '&token=' + token + '&die_save_pos=1';
poststr += Get_url_pos();
makeRequest('pmd_save_pos.php', poststr);
diff --git a/po/af.po b/po/af.po
index 4030d69a41..f9be368e8b 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \n"
-"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Wys alles"
@@ -42,9 +42,9 @@ msgstr ""
msgid "Search"
msgstr "Soek"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -60,22 +60,22 @@ msgstr "Soek"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Gaan"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Sleutelnaam"
@@ -116,18 +116,18 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Databasis %s is verwyder."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
#, fuzzy
msgid "Database comment: "
msgstr "Tabel kommentaar"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabel kommentaar"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "Tabel kommentaar"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -148,11 +148,11 @@ msgstr "Kolom name"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipe"
@@ -162,8 +162,8 @@ msgstr "Tipe"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Verstekwaarde (default)"
@@ -196,39 +196,40 @@ msgstr "Skakels na"
msgid "Comments"
msgstr "Kommentaar"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nee"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ja"
@@ -240,8 +241,8 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr "Sien die storting (skema) van die databasis"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Geen tabelle in databasis gevind nie."
@@ -268,83 +269,83 @@ msgstr "Tabel %s is vernoem na %s"
msgid "Database %s has been copied to %s"
msgstr "Tabel %s is gekopieer na %s."
-#: db_operations.php:399
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Hernoem tabel na"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
#, fuzzy
msgid "Command"
msgstr "Kommentaar"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Hernoem tabel na"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databasis %s is verwyder."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Geen databasisse"
-#: db_operations.php:478
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Geen databasisse"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Slegs struktuur"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktuur en data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Slegs Data"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr ""
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr ""
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -356,7 +357,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:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Display PDF schema"
msgid "Edit or export relational schema"
@@ -366,17 +367,17 @@ msgstr "Vertoon PDF skema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabel"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rye"
@@ -392,7 +393,7 @@ msgstr "in gebruik"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
#, fuzzy
msgid "Creation"
msgstr "Skep"
@@ -400,14 +401,14 @@ msgstr "Skep"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr ""
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr ""
@@ -419,101 +420,94 @@ msgid_plural "%s tables"
msgstr[0] "%s tabel(le)"
msgstr[1] "%s tabel(le)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Jou SQL-navraag is suksesvol uitgevoer"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sorteer"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Dalend"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Dalend"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Wys"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "En"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Of"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Verander"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Voeg By/Verwyder Kriteria Ry"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Verander Navraag"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Gebruik Tabelle"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-navraag op databasis %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Doen Navraag"
@@ -555,7 +549,7 @@ msgstr[1] "%s resultate binne tabel %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Beloer Data"
@@ -565,14 +559,15 @@ msgstr "Beloer Data"
msgid "Delete the matches for the %s table?"
msgstr "Stort data vir tabel"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Verwyder"
@@ -616,17 +611,17 @@ msgstr "Binne tabel(le):"
msgid "No tables found in database"
msgstr "Geen tabelle in databasis gevind nie."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s is leeg gemaak"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Veld %s is verwyder"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s is verwyder"
@@ -639,11 +634,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -667,22 +662,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Met gekose:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Kies Alles"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Kies Niks"
@@ -691,16 +686,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Drukker mooi (print view)"
@@ -712,28 +707,44 @@ msgstr "Maak Leeg"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Verwyder"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Kontroleer tabel"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimaliseer tabel"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Herstel tabel"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analiseer tabel"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Vervang tabel data met leer (file)"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Vervang tabel data met leer (file)"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -747,10 +758,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Databasis"
@@ -758,37 +769,37 @@ msgstr "Databasis"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Skep"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Aksie"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -797,11 +808,11 @@ msgstr ""
msgid "Versions"
msgstr "Operasies"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Slegs struktuur"
@@ -810,8 +821,8 @@ msgstr "Slegs struktuur"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Kontroleer tabel"
@@ -870,8 +881,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -929,6 +940,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Jou SQL-navraag is suksesvol uitgevoer"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -953,249 +971,263 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Wil jy regtig "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
-msgid "Deleting tracking data"
-msgstr ""
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
+msgid "Dropping Procedure"
msgstr ""
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr ""
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr ""
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Daar ontbreek 'n waarde in die vorm !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Hierdie is nie 'n nommer nie"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Die gasheer naam is leeg!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Die gebruiker naam ontbreek!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Die wagwoord is leeg!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Die wagwoorde is verskillend!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Voeg 'n nuwe gebruiker by"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Bediener weergawe"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "Geen Regte"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
msgid "Renaming Databases"
msgstr "Hernoem tabel na"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
msgid "Reload Database"
msgstr "Hernoem tabel na"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
msgid "Copying Database"
msgstr "Geen databasisse"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Jy moet ten minste een Kolom kies om te vertoon"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Skep 'n nuwe bladsy"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Soek"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL-stelling"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL-stelling"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Stoor"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-stelling"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-stelling"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoreer"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Kies 'n Veld om te vertoon"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Verander wagwoord"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Voortgebring deur"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Verander wagwoord"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Ma"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1203,122 +1235,127 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Geen databasisse"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Geen"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
msgid "Today"
msgstr "totaal"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Biner"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mei"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1326,176 +1363,176 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Des"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "So"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fr"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wo"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in gebruik"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -1546,34 +1583,34 @@ msgid "No index defined!"
msgstr "Geen indeks gedefinieer!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indekse"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Uniek"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Kommentaar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Verander"
@@ -1595,32 +1632,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "databasisse"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fout"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1712,8 +1749,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1856,20 +1893,20 @@ msgstr "Tabel"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
#, fuzzy
msgid "Total"
msgstr "totaal"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -1963,16 +2000,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr ""
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -2007,7 +2044,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentasie"
@@ -2155,7 +2192,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktuur"
@@ -2189,7 +2226,7 @@ msgid "Select from the web server upload directory %s:"
msgstr ""
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
@@ -2358,7 +2395,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Herstel"
@@ -2473,7 +2510,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2600,7 +2637,7 @@ msgid "Character set of the file"
msgstr "Karakterstel van die leer:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formaat"
@@ -2921,7 +2958,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
@@ -3648,7 +3685,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4113,9 +4150,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Wagwoord"
@@ -4135,8 +4172,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Gebruiker Naam:"
@@ -4252,7 +4289,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4400,7 +4437,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Naam"
@@ -4423,8 +4460,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Regte"
@@ -4436,7 +4473,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4455,23 +4492,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Verander wagwoord"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Geen Wagwoord"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Tik weer"
@@ -4493,7 +4530,7 @@ msgid "Create"
msgstr "Skep"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Geen Regte"
@@ -4614,8 +4651,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4633,7 +4670,7 @@ msgstr ""
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Geen"
@@ -4810,7 +4847,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Operasies"
@@ -4850,65 +4887,65 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Die ry is verwyder"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Vermoor"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in navraag"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Vertoon rye"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Verander"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "Kolom Kommentaar word vertoon"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Bediener weergawe"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Skakel nie gevind nie"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Wys PHP informasie"
@@ -5294,8 +5331,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5408,9 +5445,9 @@ msgstr "Vertoon Funksies"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Gasheer (host)"
@@ -5421,7 +5458,7 @@ msgid "Generation Time"
msgstr "Generasie Tyd"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Bediener weergawe"
@@ -5756,7 +5793,30 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Fr"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Stuur"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Geen verandering"
@@ -6058,8 +6118,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Gebruiker naam"
@@ -6080,7 +6140,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Waarde"
@@ -6098,34 +6158,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Enige gebruiker"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Enige gasheer (host)"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6190,7 +6250,7 @@ msgstr "Kenmerke"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstra"
@@ -6289,12 +6349,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6372,7 +6432,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Hardloop SQL stellings op databasis %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6406,10 +6466,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Wys hierdie navraag weer hier "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Stuur"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Kyk slegs"
@@ -6418,7 +6474,7 @@ msgstr "Kyk slegs"
msgid "Location of the text file"
msgstr "Soek die teksleer"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr ""
@@ -6471,19 +6527,19 @@ msgstr "BEGIN ONVERANDERD (RAW)"
msgid "END RAW"
msgstr "EINDE ONVERANDERD (RAW)"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Ongebalanseerde kwotasie-teken"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Ongeldige Identifiseerder"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Onbekende Punktuasie String"
@@ -6533,7 +6589,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6581,12 +6637,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primere"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Volteks"
@@ -6598,7 +6654,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6606,12 +6662,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Voeg 'n nuwe veld by"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6754,82 +6810,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Algemene verwantskap funksies"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Algemene verwantskap funksies"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Gebruiker"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL Karakterstel"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP Version"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Wys PHP informasie"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Amptelike phpMyAdmin Tuisblad"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Kenmerke"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Geen verandering"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6837,21 +6893,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6859,24 +6915,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6888,21 +6944,21 @@ msgstr ""
"Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. "
"Om uit te vind hoekom kliek %shier%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6923,13 +6979,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Verander tabel sorteer volgens"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Skep 'n nuwe bladsy"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Kies asb. 'n databasis"
@@ -7317,106 +7373,106 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7424,59 +7480,59 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7484,12 +7540,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7505,231 +7561,231 @@ msgctxt "None privileges"
msgid "None"
msgstr "Geen"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: MySQL regte name word in Engels vertoon "
-#: server_privileges.php:574 server_privileges.php:1635
+#: server_privileges.php:512
+msgid "Administration"
+msgstr ""
+
+#: server_privileges.php:576 server_privileges.php:1608
#, fuzzy
msgid "Global privileges"
msgstr "Geen Regte"
-#: server_privileges.php:576 server_privileges.php:1824
+#: server_privileges.php:578 server_privileges.php:1797
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:621
-msgid "Administration"
-msgstr ""
-
-#: server_privileges.php:641
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
#, fuzzy
msgid "Login Information"
msgstr "Wys PHP informasie"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Moenie die wagwoord verander nie"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Geen gebruiker(s) gevind nie."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Jy het 'n nuwe gebruiker bygevoeg."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Jy het die regte opgedateer vir %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Jy het die regte herroep vir %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Verander Regte"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Herroep"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Enige"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Voeg 'n nuwe gebruiker by"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Geen"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8746,7 +8802,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8778,57 +8834,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Veranderinge is gestoor"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentasie"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9055,64 +9123,64 @@ msgstr ""
msgid "Function"
msgstr "Funksie"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr ""
" Omrede sy lengte,
is hierdie veld moontlik nie veranderbaar nie "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Biner - moenie verander nie"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Voeg by as 'n nuwe ry"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Terug na vorige bladsy"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Voeg 'n nuwe ry by"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
#, fuzzy
msgid "Go back to this page"
msgstr "Terug na vorige bladsy"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9268,7 +9336,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Voeg by indeks %s kolom(me)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9294,104 +9362,104 @@ msgstr "Tabel %s is gekopieer na %s."
msgid "The table name is empty!"
msgstr "Die tabel naam is leeg!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Verander tabel sorteer volgens"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(afsonderlik)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Skuif tabel na (databasis.tabel):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Hernoem tabel na"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopieer tabel na (databasis.tabel):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabel instandhouding"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabel %s is geflush"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Spoel die tabel (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Stort data vir tabel"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Geen databasisse"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Tabel instandhouding"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Herstel tabel"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Toets referential integrity:"
@@ -9399,39 +9467,39 @@ msgstr "Toets referential integrity:"
msgid "Show tables"
msgstr "Wys tabelle"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Spasie verbruik"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Gebruik"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effektief"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Ry Statistiek"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Stellings"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamies"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Ry lengte"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Ry grootte "
@@ -9514,56 +9582,56 @@ msgstr "Geen"
msgid "Column %s has been dropped"
msgstr "Tabel %s is verwyder"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "'n primere sleutel is bygevoeg op %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "'n Indeks is bygevoeg op %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Wys PHP informasie"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relasie uitsig"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Stel tabel struktuur voor"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "Voeg 'n nuwe veld by"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "By Einde van Tabel"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "By Begin van Tabel"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Na %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Skep 'n indeks op %s kolomme"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9591,109 +9659,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query"
+msgid "Query error"
+msgstr "Navraag dmv Voorbeeld"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Geen databasisse"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "PHP Version"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Bediener weergawe"
diff --git a/po/ar.po b/po/ar.po
index e584f1823d..4fedbc4b76 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,22 +1,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-21 13:56+0200\n"
"Last-Translator: \n"
"Language-Team: arabic \n"
-"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "شاهد الكل"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "ابحث"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "ابحث"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr " تنفيذ "
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "اسم المفتاح"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "تم إنشاء قاعدة بيانات %1$s."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ملاحظة قاعدة البيانات: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "تعليقات على الجدول"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "تعليقات على الجدول"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -151,11 +151,11 @@ msgstr "اسم العمود"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "النوع"
@@ -165,8 +165,8 @@ msgstr "النوع"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "خالي"
@@ -176,7 +176,7 @@ msgstr "خالي"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "افتراضي"
@@ -199,39 +199,40 @@ msgstr "مرتبط بـ"
msgid "Comments"
msgstr "تعليقات"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "لا"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "نعم"
@@ -243,8 +244,8 @@ msgstr "اطبع"
msgid "View dump (schema) of database"
msgstr "عرض بنية قاعدة البيانات"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!."
@@ -270,78 +271,78 @@ msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s"
msgid "Database %s has been copied to %s"
msgstr "تم نسخ قاعدة البيانات %s إلى %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "أمر"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "حذف قاعدة البيانات"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "قاعدة بيانات %s محذوفه."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "إزاله قاعدة البيانات"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "إنسخ قاعدة البيانات إلى"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "البنية فقط"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "البنية والبيانات"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "بيانات فقط"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "إنشاء قاعدة البيانات قبل النسخ"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "أضف %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "أضف قيمة AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "أضف قيودا"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -350,10 +351,10 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
-"%s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
+"s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -363,17 +364,17 @@ msgstr "بناء الارتباطات"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "الجدول"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "صفوف"
@@ -389,21 +390,21 @@ msgstr "قيد الإستعمال"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "الإنشاء"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "التحديث الأخير"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "التحقق الأخير"
@@ -415,101 +416,94 @@ msgid_plural "%s tables"
msgstr[0] "%s جدول (جداول)"
msgstr[1] "%s جدول (جداول)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "الخاص بك تم تنفيذه بنجاح SQL-استعلام"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "عليك اختيار عمود واحد على الأقل للعرض"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "تصنيف"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "تصاعديا"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "تنازليا"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "عرض"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "المعايير"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "و"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "أو"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "تعديل"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "إضافه/حذف صف سجل"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "إضافه/حذف عمود حقل"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "تجديد استعلام"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "استخدم الجدول"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "في قاعدة البيانات SQL-إستعلام %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "إرسال الاستعلام"
@@ -555,7 +549,7 @@ msgstr[5] "%s مطابقة في الجدول %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "استعراض"
@@ -565,14 +559,15 @@ msgstr "استعراض"
msgid "Delete the matches for the %s table?"
msgstr "إرجاع أو استيراد بيانات الجدول"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "حذف"
@@ -620,17 +615,17 @@ msgstr "داخل الجدول)الجداول(:"
msgid "No tables found in database"
msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s أفرغت محتوياتها"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s حذفت"
@@ -643,11 +638,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -671,22 +666,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr ": على المحدد"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "اختر الكل"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "إلغاء تحديد الكل"
@@ -695,16 +690,16 @@ msgid "Check tables having overhead"
msgstr "تحقق من overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "تصدير"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "عرض نسخة للطباعة"
@@ -716,28 +711,46 @@ msgstr "إفراغ محتوى"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "حذف"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "التحقق من الجدول"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "ضغط الجدول"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "إصلاح الجدول"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "تحليل الجدول"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "اذهب إلى الجدول"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "استبدال بيانات الجدول بالملف"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "استبدال بيانات الجدول بالملف"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "قاموس البيانات"
@@ -751,10 +764,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "قاعدة البيانات"
@@ -762,36 +775,36 @@ msgstr "قاعدة البيانات"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "أنشئ"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "محدث"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "وضع"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "العملية"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "نشط"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "غير نشط"
@@ -799,11 +812,11 @@ msgstr "غير نشط"
msgid "Versions"
msgstr "نسخ"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -811,8 +824,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -871,8 +884,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -930,6 +943,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "الخاص بك تم تنفيذه بنجاح SQL-استعلام"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -954,265 +974,279 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "معطل \"حذف قاعدة بيانات\"الأمر "
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "هل تريد حقا "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
+msgid "Dropping Procedure"
+msgstr ""
+
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "يسمح بإضافة واستبدال البيانات."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "يوجد قيمه مفقوده بالنموذج !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "هذا ليس رقم!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "اسم المستضيف فارغ!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "اسم المستخدم فارغ!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "كلمة السر فارغة !"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "كلمتا السر غير متشابهتان !"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "أضف مستخدم جديد"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create"
msgid "Create User"
msgstr "تكوين"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "قيد إعادة قراءة الصلاحيات."
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "احذف المستخدمين المحددين"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "أغلق"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "ألغ"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "معالَجات"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "موافق"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "إنسخ قاعدة البيانات إلى"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "مجموعة المحارف"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "عليك اختيار عمود واحد على الأقل للعرض"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "أنشئ الجدول"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "ابحث"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "في الاستعلام"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "SQL query"
msgid "Show query box"
msgstr "استعلام-SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "حفظ"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "أخف"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "في الاستعلام"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "SQL query"
msgid "Show search criteria"
msgstr "استعلام-SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "تجاهل"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "اختر الحقل لإظهاره"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "تغيير كلمة السر"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "ولد"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "تغيير كلمة السر"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "الإثنين"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1220,121 +1254,127 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+#| msgid "No databases"
+msgid "up to date"
+msgstr "لايوجد قواعد بيانات"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "تبرع"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "سابق"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "التالي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "مجموع كلي"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "يناير"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "فبراير"
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "أبريل"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "مايو"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "يونيو"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "يوليو"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "أغسطس"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "سبتمبر"
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "أكتوبر"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "نوفمبر"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "ديسمبر"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "يناير"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "فبراير"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "أبريل"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1342,174 +1382,174 @@ msgid "May"
msgstr "مايو"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "يونيو"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "يوليو"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "أغسطس"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "سبتمبر"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "أكتوبر"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "نوفمبر"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "ديسمبر"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "الأحد"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "الإثنين"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "الثلاثاء"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "الأربعاء"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "الخميس"
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "الجمعة"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "السبت"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "الأحد"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "الإثنين"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "الثلاثاء"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "الأربعاء"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "الخميس"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "الجمعة"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "السبت"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "الأحد"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "الإثنين"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "الثلاثاء"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "الأربعاء"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "الخميس"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "الجمعة"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "السبت"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "الأسبوع"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "الساعة"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "الدقيقة"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "الثانية"
@@ -1558,33 +1598,33 @@ msgid "No index defined!"
msgstr "فهرس غير معرف!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "فهارس"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "مميز"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "تعليق"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تحرير"
@@ -1606,32 +1646,32 @@ msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحده
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "قاعدة بيانات"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "خطأ"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1723,8 +1763,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1869,19 +1909,19 @@ msgstr "جداول"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "بيانات"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "مجموع كلي"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "الفوقي"
@@ -1975,16 +2015,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "خادم"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "عليك التحديث إلى %s %s أو لاحقا."
@@ -2019,7 +2059,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "مستندات وثائقية"
@@ -2167,7 +2207,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "بناء"
@@ -2202,7 +2242,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "دليل تحميل الملفات على خادم الشبكة"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه."
@@ -2372,7 +2412,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "إلغاء"
@@ -2488,7 +2528,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2621,7 +2661,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "صيغة"
@@ -2942,7 +2982,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "خوادم"
@@ -3679,7 +3719,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4135,9 +4175,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "كلمة السر"
@@ -4157,8 +4197,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "اسم المستخدم"
@@ -4273,7 +4313,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4422,7 +4462,7 @@ msgstr "أحداث"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "الاسم"
@@ -4445,8 +4485,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "الإمتيازات"
@@ -4458,7 +4498,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4477,23 +4517,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "تغيير كلمة السر"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "لا كلمة سر"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "أعد كتابة"
@@ -4515,7 +4555,7 @@ msgid "Create"
msgstr "تكوين"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "امتياز غير موجود"
@@ -4640,8 +4680,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4661,7 +4701,7 @@ msgstr "الضغط"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "لا شيء"
@@ -4844,7 +4884,7 @@ msgstr "رتب حسب المفتاح"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "خيارات"
@@ -4883,66 +4923,66 @@ msgstr ""
msgid "Browser transformation"
msgstr "تحويل المتصفح"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "لقد تم حذف الصف"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "إبطال"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "في الاستعلام"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "مشاهدة السجلات "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "المجموع"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "استغرق الاستعلام %01.4f ثانية"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "تغيير"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "عرض الطباعة (مع النصوص الكاملة)."
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "إظهار بناء ملف PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "تكوين"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "لم يمكن إيجاد الوصلة"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr ""
@@ -5325,8 +5365,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5449,9 +5489,9 @@ msgstr "أنواع MIME المتوفرة"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "المزود"
@@ -5462,7 +5502,7 @@ msgid "Generation Time"
msgstr "أنشئ في"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "إصدارة المزود"
@@ -5795,7 +5835,32 @@ msgstr "لا شيء"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "الجمعة"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "إرسال"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "إضافة حقل جديد"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "لا تغييرات"
@@ -6099,8 +6164,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "اسم المستخدم"
@@ -6121,7 +6186,7 @@ msgstr "متغير"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "القيمة"
@@ -6139,34 +6204,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "أي مستخدم"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "استخدم حقل نص"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "أي مزود"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "محلي"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "هذا المضيف"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "استخدم الجدول المضيف"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6230,7 +6295,7 @@ msgstr "الخواص"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "إضافي"
@@ -6332,12 +6397,12 @@ msgid "Toggle scratchboard"
msgstr "toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6414,7 +6479,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6448,10 +6513,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " عرض هذا الاستعلام هنا مرة أخرى "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "إرسال"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "عرض فقط"
@@ -6460,7 +6521,7 @@ msgstr "عرض فقط"
msgid "Location of the text file"
msgstr "مكان ملف نصي"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "دليل تحميل الملفات على خادم الشبكة"
@@ -6508,19 +6569,19 @@ msgstr "بدء بيانات أصلية"
msgid "END RAW"
msgstr "انتهاء البيانات الأصلية"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "علامة تنصيص غير مغلقة"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "معرف غير صالح"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "نص تنقيط غير معروف"
@@ -6574,7 +6635,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "فهرست"
@@ -6622,12 +6683,12 @@ msgid "As defined:"
msgstr "كما هو معرف:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "أساسي"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "النص كاملا"
@@ -6639,7 +6700,7 @@ msgid ""
msgstr "ليس هناك وصف متوفر لهذا التحويل.
رجاء اسأل الناشر، ما يفعله %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6647,13 +6708,13 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add into comments"
msgid "Add %s column(s)"
msgstr "أضف إلى الملاحظات"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6842,77 +6903,77 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "المزايا العامّة للرابط"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "المزايا العامّة للرابط"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "نسخة البروتوكول"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "المستخدم"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "شيفرة أحرف MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "خادم الويب"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "عرض المعلومات المتعلقة ب PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "ويكي"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "الصفحة الرئيسية الرسمية لـ phpMyAdmin"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "مشاركه"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "اجلب دعم"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "قائمة التعديلات"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6924,21 +6985,21 @@ msgstr ""
"الافتراضية معرض لخطر الاقتحام، وعليك أن تقوم بإصلاح ثغرة الأمان هذه في أقرب "
"وقت ممكن."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6946,24 +7007,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6972,24 +7033,24 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
-"%s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
+"s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7010,14 +7071,14 @@ msgstr ""
msgid "filter tables by name"
msgstr "اسم الجدول"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "أنشئ الجدول"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "اختر قاعدة بيانات من القائمة"
@@ -7405,106 +7466,106 @@ msgid "Includes all privileges except GRANT."
msgstr "يتضمن كل الصلاحيات عدا GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "يسمح بإنشاء جداول جديدة."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "يسمح بإنشاء جداول مؤقتة."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "يسمح بحذف البيانات."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "يسمح بحذف قواعد البيانات."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "يسمح بحذف الجداول."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "يسمح بإنشاء وحذف الفهارس."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "يسمح بإضافة واستبدال البيانات."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "يسمح بقفل الجداول للعملية الحالية."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7512,58 +7573,58 @@ msgstr ""
"يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة "
"بيانات."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "ليس له أي تأثير في نسخة MySQL الحالية."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "مطلوب لتوابع لاستنساخ."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "يسمح بقراءة البيانات."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "يسمح بإيقاف عمل الخادم."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7573,12 +7634,12 @@ msgstr ""
"كضبط الإعدادات العامة other users."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "يسمح بتعديل البيانات."
@@ -7593,233 +7654,233 @@ msgctxt "None privileges"
msgid "None"
msgstr "لا شيء"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "صلاحيات خاصة بالجدول"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "صلاحيات عامة"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "صلاحيات خاصة بقاعدة البيانات"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "إدارة"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "صلاحيات عامة"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "صلاحيات خاصة بقاعدة البيانات"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "حدود المصادر"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "بيانات الدخول"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "لاتغير كلمة السر"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "المستخدم(ون) لم يتم إيجادهم."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "اسم المستخدم %s موجود مسبقاً!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "لقد أضفت مستخدم جديد."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "لقد جددت وحدثت الإمتيازات لـ %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "لقد أبطلت الامتيازات لـ %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "تم تغيير كلمة المرور لـ %s بنجاح."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "قيد حذف %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "قيد إعادة قراءة الصلاحيات."
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "تم حذف المستخدمين المحددين بنجاح."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "تم إعادة قراءة الصلاحيات بنجاح."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "تحرير الامتيازات"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "إبطال"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "أي"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "معلومات المستخدم"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "منح"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "أضف مستخدم جديد"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "احذف المستخدمين المحددين"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "صلاحيات خاصة بالحقل"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "إضافة الصلاحيات على قاعدة البيانات التالية"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "إضافة الصلاحيات على الجدول التالي"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "غير معلومات الدخول / انسخ اسم مستخدم"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr " ... أبق القديم."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... احذف القديم من جداول المستخدمين."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "لا شيء"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "عام"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "خاص بقاعدة بيانات"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "حرف شامل"
@@ -8832,7 +8893,7 @@ msgstr "قيمة الجلسة"
msgid "Global value"
msgstr "قيمة عامة"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "نزل"
@@ -8864,55 +8925,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "تمت التعديلات"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "خادم جديد"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- لا شيء -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "تبرع"
@@ -9137,62 +9210,62 @@ msgstr ""
msgid "Function"
msgstr "دالة"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "ثنائي - لاتحرره"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "إدخال كتسجيل جديد"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "وبعدها"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "الرجوع إلى الصفحة السابقة"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "إدخال تسجيل جديد"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "ارجع إلى هذه الصفحة"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "عدل الصف التالي"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9349,7 +9422,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "إضافه كفهرس %s صف(ـوف)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9375,103 +9448,103 @@ msgstr "الجدول %s لقد تم نسخه إلى %s."
msgid "The table name is empty!"
msgstr "اسم الجدول فارغ!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "تعديل ترتيب الجدول بـ"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(فردي)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "نقل جدول إلى (قاعدة بيانات.جدول):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "خيارات الجدول"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "تغيير اسم جدول إلى"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "نسخ الجدول إلى"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "بدل إلى الجدول المنسوخ"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "صيانة الجدول"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "لقد تم إعادة تحميل الجدول %s بنجاح"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "إعادة تحميل الجدول (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "إرجاع أو استيراد بيانات الجدول"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
msgstr "إنسخ قاعدة البيانات إلى"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "حلل"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "تحقق"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "صلح"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "تحديد التكامل المرجعي:"
@@ -9479,39 +9552,39 @@ msgstr "تحديد التكامل المرجعي:"
msgid "Show tables"
msgstr "شاهد الجدول"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "المساحة المستغلة"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "المساحة"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "فعال"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "إحصائيات"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "أوامر"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "ديناميكي"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "طول الصف"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " مقاس الصف "
@@ -9597,57 +9670,57 @@ msgstr "لا شيء"
msgid "Column %s has been dropped"
msgstr "جدول %s حذفت"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "لقد أُضيف المفتاح الأساسي في %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "لقد أُضيف الفهرس في %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "عرض المعلومات المتعلقة ب PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "عرض الروابط"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "اقترح بناء الجدول"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add into comments"
msgid "Add column"
msgstr "أضف إلى الملاحظات"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "في نهاية الجدول"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "في بداية الجدول"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "بعد %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "تصميم فهرسه على %s عمود"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9675,107 +9748,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "errors."
+msgid "Query error"
+msgstr "أخطاء."
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "يسمح بإضافة واستبدال البيانات."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "لايوجد قواعد بيانات"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "تاريخ"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "نسخة"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
@@ -9854,8 +9953,8 @@ msgstr "أعد تسمية العرض الـ"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
-#~ "%sهنا%s."
+#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
+#~ "sهنا%s."
#~ msgid "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
diff --git a/po/az.po b/po/az.po
index e6c40d0c64..f53825bbb3 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Hamısını göster"
@@ -41,9 +41,9 @@ msgstr ""
msgid "Search"
msgstr "Axtarış"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -59,22 +59,22 @@ msgstr "Axtarış"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Davam"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Açar söz"
@@ -114,17 +114,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s bazası leğv edildi."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Baza qısa izahatı: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Cedvel haqqında qısa izahat"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -132,7 +132,7 @@ msgstr "Cedvel haqqında qısa izahat"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -145,11 +145,11 @@ msgstr "Sütun adları"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -159,8 +159,8 @@ msgstr "Tip"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -170,7 +170,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Başlanğıc deyeri"
@@ -193,39 +193,40 @@ msgstr "Links to"
msgid "Comments"
msgstr "Qısa İzahatlar"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Xeyir"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Beli"
@@ -237,8 +238,8 @@ msgstr "Çap et"
msgid "View dump (schema) of database"
msgstr "Me'lumat bazasının sxemini göster"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Me'lumat bazasında cedvel yoxdur."
@@ -265,84 +266,84 @@ msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
msgid "Database %s has been copied to %s"
msgstr "%s cedveli %s - e kopyalandı."
-#: db_operations.php:399
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Cedveli yeniden adlandır"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Komanda Tipi"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Cedveli yeniden adlandır"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s bazası leğv edildi."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: db_operations.php:478
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Sadece quruluş"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Quruluş ve me'lumat"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Sadece me'lumat"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT deyeri elave et"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr ""
-#: db_operations.php:519
+#: db_operations.php:528
#, fuzzy
msgid "Switch to copied database"
msgstr "Kopyalanmış cedvele keç"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
#, fuzzy
msgid "Collation"
msgstr "Quruluş"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -354,7 +355,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:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -364,17 +365,17 @@ msgstr "Relational schema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Cedvel"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Sıra sayı"
@@ -390,21 +391,21 @@ msgstr "istifadede"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Quruluş"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "En son yenilenme"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "En son yoxlama"
@@ -416,101 +417,94 @@ msgid_plural "%s tables"
msgstr[0] "%s cedvel"
msgstr[1] "%s cedvel"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sırala"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Artan sırada"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Azalan sırada"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Göster"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteriyalar"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Ve"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "ya da"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modify"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Kriteria Setirlerini Elave Et/Sil"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Sorğunu Yenile"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Use Tables"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-query on database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Emri İcra Et"
@@ -552,7 +546,7 @@ msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "İçindekiler"
@@ -562,14 +556,15 @@ msgstr "İçindekiler"
msgid "Delete the matches for the %s table?"
msgstr "Sxemi çıxarılan cedvel"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Sil"
@@ -613,17 +608,17 @@ msgstr "Inside table(s):"
msgid "No tables found in database"
msgstr "Me'lumat bazasında cedvel yoxdur."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "%s cedveli boşaldıldı"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "%s sahesi leğv edildi"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "%s cedveli leğv edildi"
@@ -636,11 +631,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -665,22 +660,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Seçilenleri:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Hamısını Seç"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Heç Birini Seçme"
@@ -689,16 +684,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Çap görüntüsü"
@@ -710,28 +705,44 @@ msgstr "Boşalt"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Leğv et"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Cedveli yoxla"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Cedveli optimallaşdır"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Cedveli te'mir et"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Cedveli analiz et"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Me'lumat lüğeti"
@@ -745,10 +756,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Me'lumat Bazası"
@@ -756,37 +767,37 @@ msgstr "Me'lumat Bazası"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Qur"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Fealiyyetler"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -795,11 +806,11 @@ msgstr ""
msgid "Versions"
msgstr "Emeliyyatlar"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Sadece quruluş"
@@ -808,8 +819,8 @@ msgstr "Sadece quruluş"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Cedveli yoxla"
@@ -870,8 +881,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -929,6 +940,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -955,260 +973,278 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bazanı YOX ETMEK üzeresiniz!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Bütün bazanı YOX ETMEK üzeresiniz!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Bütün bazanı YOX ETMEK üzeresiniz!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "Prosesler"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Allows inserting and replacing data."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Formda eksik girilmiş deyer var!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Bu reqem deyildir!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Host adı boşdur!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "İstifadeçi adı boş qaldı!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Parol boşdur!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Girdiyiniz parollar eyni deyil!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Yeni İstifadeçi elave Et"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Server versiyası"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "Qlobal selahiyyetler"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Remove selected users"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Yerli"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Prosesler"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Müveffeqiyyetle"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
msgid "Renaming Databases"
msgstr "Cedveli yeniden adlandır"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
msgid "Reload Database"
msgstr "Cedveli yeniden adlandır"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
msgid "Copying Database"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Charset"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Yeni Sehife qur"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Axtarış"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL sorğusu"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL sorğusu"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Motorlar"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Qeyd Et"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL sorğusu"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL sorğusu"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Diqqete Alma"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Gösterilecek Saheni Seç"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Qurucu"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Baz Ert"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1216,123 +1252,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Heç biri"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Evvelki"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Sonrakı"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Cemi"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binary"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "May"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "İyun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "İyul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avq"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Yan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1340,176 +1381,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "İyun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "İyul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Avq"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sent"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Noy"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Baz"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Baz Ert"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Çerş Axş"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cüme"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Baz"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Baz Ert"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Çerş Axş"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Çerş"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Cüme Axş"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Cüme"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Şen"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Baz"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Baz Ert"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Çerş Axş"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çerş"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cüme Axş"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cüme"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şen"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "istifadede"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1560,34 +1601,34 @@ msgid "No index defined!"
msgstr "İndeks te'yin edilmedi!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksler"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikal"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Qısa İzahatlar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Deyişdir"
@@ -1609,32 +1650,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Me'lumat Bazaları"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Xeta"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1726,8 +1767,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1870,19 +1911,19 @@ msgstr "Cedveller"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Me'lumat"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Cemi"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Aşma deyeri"
@@ -1976,16 +2017,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -2020,7 +2061,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentasiya"
@@ -2170,7 +2211,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Quruluş"
@@ -2205,7 +2246,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "web-server upload direktoriyası"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı"
@@ -2376,7 +2417,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Yenile"
@@ -2492,7 +2533,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2621,7 +2662,7 @@ msgid "Character set of the file"
msgstr "Faylın Charset-i:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2950,7 +2991,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Server"
@@ -3692,7 +3733,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4160,9 +4201,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Parol"
@@ -4182,8 +4223,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "İstifadeçi Adı:"
@@ -4299,7 +4340,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4446,7 +4487,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Adı"
@@ -4469,8 +4510,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Selahiyyetler"
@@ -4482,7 +4523,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4501,23 +4542,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Parolu Deyişdir"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Parol Yoxdur"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Re-type"
@@ -4539,7 +4580,7 @@ msgid "Create"
msgstr "Qur"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Selahiyyet çatışmazlığı"
@@ -4664,8 +4705,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4685,7 +4726,7 @@ msgstr "Sıxışdırma"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Heç biri"
@@ -4866,7 +4907,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Emeliyyatlar"
@@ -4907,65 +4948,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Setir silindi"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Söndür"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Gösterilen setirler"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "cemi"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "sorğu %01.4f saniyede icra edildi"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Deyişdir"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF sxemini göster"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Server versiyası"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link tapılmadı"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Sisteme Giriş Me'lumatı"
@@ -5353,8 +5394,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5474,9 +5515,9 @@ msgstr "Mövcud olan MIME-tipleri"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5487,7 +5528,7 @@ msgid "Generation Time"
msgstr "Hazırlanma Vaxtı"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Server versiyası"
@@ -5826,7 +5867,32 @@ msgstr "Heç biri"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Cüme"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Submit"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Yeni sahe elave et"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Deyişiklik Yoxdur"
@@ -6135,8 +6201,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "İstifadeçi adı"
@@ -6157,7 +6223,7 @@ msgstr "Deyişen"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Deyer"
@@ -6176,34 +6242,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Her hansı istifadeçi"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Use text field"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Her hansı host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Yerli"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Bu Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6267,7 +6333,7 @@ msgstr "Xüsusiyyetler"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Elave Xüs."
@@ -6370,12 +6436,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6456,7 +6522,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6490,10 +6556,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Bu sorğunu burada yene göster "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Submit"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Sadece göster"
@@ -6502,7 +6564,7 @@ msgstr "Sadece göster"
msgid "Location of the text file"
msgstr "tekst faylından yükleyerek"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web-server upload direktoriyası"
@@ -6552,19 +6614,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Unclosed quote"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Invalid Identifer"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
@@ -6618,7 +6680,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "İndeks"
@@ -6667,12 +6729,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Birinci Dereceli"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Tam metn (Fulltext)"
@@ -6686,7 +6748,7 @@ msgstr ""
"author, what %s does."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Depolama Motorları"
@@ -6694,12 +6756,12 @@ msgstr "Depolama Motorları"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Yeni sahe elave et"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6891,82 +6953,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Ümumi elaqe variantları"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Ümumi elaqe variantları"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "İstifadeçi"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL charset"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP Versiyası"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHPInfo() me'lumatını göster"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin Resmi İnternet Sehifesi"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Xüsusiyyetler"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Deyişiklik Yoxdur"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6977,21 +7039,21 @@ msgstr ""
"istifadeçisi) mövcuddur ki, bu da tehlükesizlik nöqteyi nezerinden e'tibarlı "
"deyildir."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6999,24 +7061,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7028,21 +7090,21 @@ msgstr ""
"Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler "
"passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7063,13 +7125,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Cedvel sırasına buna göre yeniden qur"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Yeni Sehife qur"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Me'lumat bazası seç"
@@ -7464,110 +7526,110 @@ msgid "Includes all privileges except GRANT."
msgstr "GRANT-dan başqa bütün selahiyyetler daxildir."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Yeni bazalar ve cedveller qurmağa icaze verir."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "Yeni cedveller qurmağa icaze verir."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Yeni cedveller qurmağa icaze verir."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Keçici cedveller qurmağa icaze verir."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "Yeni cedveller qurmağa icaze verir."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Me'lumat silmeye icaze verir."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Baza ve cedvel leğv etmeye icaze verir."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Cedvelleri leğv etmeye icaze verir."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Allows importing data from and exporting data into files."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Allows inserting and replacing data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Allows locking tables for the current thread."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7575,59 +7637,59 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Has no effect in this MySQL version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Needed for the replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Allows reading data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gives access to the complete list of databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Allows shutting down the server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7638,13 +7700,13 @@ msgstr ""
"killing threads of other users."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Allows changing data."
@@ -7659,191 +7721,191 @@ msgctxt "None privileges"
msgid "None"
msgstr "Heç biri"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Cedvelexas selahiyyetler"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Qlobal selahiyyetler"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Me'lumat Bazasına Mexsus Selahiyyetler"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administrasiya"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Qlobal selahiyyetler"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Me'lumat Bazasına Mexsus Selahiyyetler"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resource limits"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Sisteme Giriş Me'lumatı"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Parolu deyişdirme"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "İstifadeçi(ler) tapılmadı."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "%s istifadeçisi mövcuddur!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Yeni istifadeçi elave etdiniz."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s silinir"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Reloading the privileges"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "The privileges were reloaded successfully."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Selahiyyetleri Deyişdir"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revoke"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Her hansı"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "User overview"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "İcaze ver"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Yeni İstifadeçi elave Et"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Remove selected users"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Sütunaxas Selahiyyetler"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... köhnesini saxla."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... istifadeçi cedvellerinden köhnesini sil."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7851,44 +7913,44 @@ msgstr ""
" ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri "
"yeniden yükle."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Heç biri"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" bazası üçün selahiyyetleri gözden keçir."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "qlobal"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "bazayaxas"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "xüsusi işare"
@@ -8910,7 +8972,7 @@ msgstr "Sessiya deyeri"
msgid "Global value"
msgstr "Qlobal deyer"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8942,57 +9004,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Modifications have been saved"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Yerli"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentasiyası (etraflı me'lumat üçün)"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9219,63 +9293,63 @@ msgstr "The selected users have been deleted successfully."
msgid "Function"
msgstr "Funksiya"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr ""
" Uzun olduğuna göre,
bu sahedeki me'lumatlar deyişdirilmeye biler "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binary - deyişiklik etme"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Yeni setir olaraq elave et"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Evvelki sehifeye qayıt"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Teze bir setir daha gir"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Bu sehifeye geri dön"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Bir sonrakı setre keç"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9431,7 +9505,7 @@ msgstr "(\"PRIMARY\" sadece birinci dereceli açarın adı olmalıdır!)"
msgid "Add to index %s column(s)"
msgstr "İndekse %s sütun elave et"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9457,105 +9531,105 @@ msgstr "%s cedveli %s - e kopyalandı."
msgid "The table name is empty!"
msgstr "Cedveli adı boşdur!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Cedvel sırasına buna göre yeniden qur"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(tek-tek)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Cedveli daşı (me'lumat bazası.cedvel):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
#, fuzzy
msgid "Table options"
msgstr "Cedvel başlığı"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Cedveli yeniden adlandır"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Cedveli kopyala (me'lumat bazası.cedvel):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Kopyalanmış cedvele keç"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Cedvel temizliyi"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "%s cedveli flush-landı"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Cedveli flush-la (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Sxemi çıxarılan cedvel"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Cedvel temizliyi"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Cedveli te'mir et"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Check referential integrity:"
@@ -9563,39 +9637,39 @@ msgstr "Check referential integrity:"
msgid "Show tables"
msgstr "Cedvelleri göster"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Yer istifadesi"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Miqdar"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Sıra Statistikası"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Variantlar"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Sıra uzunluğu"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Sıra boyu "
@@ -9680,56 +9754,56 @@ msgstr "Heç biri"
msgid "Column %s has been dropped"
msgstr "%s cedveli leğv edildi"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "%s üzerine Birinci Dereceli Açar elave edildi."
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "%s üzerine indeks elave edildi"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "PHPInfo() me'lumatını göster"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relation view"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Alternativ cedvel strukturu"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "Yeni sahe elave et"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Cedvelin sonuna"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Cedvelin başına"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Sonra: %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr " %s sütunda indeks yarat"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9757,109 +9831,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Sorğu tipi"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Allows inserting and replacing data."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Me'lumat"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "PHP Versiyası"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Server versiyası"
diff --git a/po/be.po b/po/be.po
index 2d2636eb1c..84252029cb 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Паказаць усе"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Пошук"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Пошук"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Панеслася"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Імя ключа"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "База дадзеных %1$s створаная."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Камэнтар да базы дадзеных: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Камэнтар да табліцы"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "Камэнтар да табліцы"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -150,11 +150,11 @@ msgstr "Назвы калёнак"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Тып"
@@ -164,8 +164,8 @@ msgstr "Тып"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Нуль"
@@ -175,7 +175,7 @@ msgstr "Нуль"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Па змоўчаньні"
@@ -198,39 +198,40 @@ msgstr "Зьвязаная з"
msgid "Comments"
msgstr "Камэнтары"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Так"
@@ -242,8 +243,8 @@ msgstr "Друк"
msgid "View dump (schema) of database"
msgstr "Праглядзець дамп (схему) базы дадзеных"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "У базе дадзеных табліц ня выяўлена."
@@ -269,81 +270,81 @@ msgstr "База дадзеных %s была перайменаваная ў %s
msgid "Database %s has been copied to %s"
msgstr "База дадзеных %s была скапіяваная ў %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Перайменаваць базу дадзеных у"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Каманда"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Перайменаваць базу дадзеных у"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "База дадзеных %s была выдаленая."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Базы дадзеных адсутнічаюць"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Капіяваць базу дадзеных у"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Толькі структуру"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структуру і дадзеныя"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Толькі дадзеныя"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "выканаць CREATE DATABASE перад капіяваньнем"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Дадаць %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Дадаць значэньне AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Дадаць абмежаваньні"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Перайсьці да скапіяванай базы дадзеных"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Супастаўленьне"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -355,7 +356,7 @@ msgstr ""
"Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб "
"высьветліць чаму, націсьніце %sтут%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -365,17 +366,17 @@ msgstr "Рэляцыйная схема"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Табліца"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Радкі"
@@ -391,21 +392,21 @@ msgstr "выкарыстоўваецца"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Створаная"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Апошняе абнаўленьне"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Апошняя праверка"
@@ -417,101 +418,94 @@ msgid_plural "%s tables"
msgstr[0] "%s табліц(ы)"
msgstr[1] "%s табліц(ы)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Ваш SQL-запыт быў пасьпяхова выкананы"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Парадак"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "прамы"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "адваротны"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Паказаць"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Крытэр"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Уставіць"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "І"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Выдаліць"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Або"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Зьмяніць"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Дадаць/выдаліць радок крытэру"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Абнавіць запыт"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Выкарыстоўваць табліцы"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-запыт да БД %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Выканаць запыт"
@@ -553,7 +547,7 @@ msgstr[1] "%s супадзеньняў у табліцы %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Прагляд"
@@ -563,14 +557,15 @@ msgstr "Прагляд"
msgid "Delete the matches for the %s table?"
msgstr "Дамп дадзеных табліцы"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Выдаліць"
@@ -614,17 +609,17 @@ msgstr "Унутры поля:"
msgid "No tables found in database"
msgstr "У базе дадзеных табліц ня выяўлена."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Табліца %s была ачышчаная"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Выгляд %s быў выдалены"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Табліца %s была выдаленая"
@@ -637,14 +632,14 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
-"%sдакумэнтацыі%s."
+"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
+"sдакумэнтацыі%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -669,22 +664,22 @@ msgstr ""
"сэрвэры."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "З адзначанымі:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Адзначыць усё"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Зьняць усе адзнакі"
@@ -693,16 +688,16 @@ msgid "Check tables having overhead"
msgstr "Адзначыць тыя, што патрабуюць аптымізацыі"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспарт"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Вэрсія для друку"
@@ -714,28 +709,45 @@ msgstr "Ачысьціць"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Выдаліць"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Праверыць табліцу"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Аптымізаваць табліцу"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Рамантаваць табліцу"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Аналізаваць табліцу"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Базы дадзеных адсутнічаюць"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Замяніць дадзеныя табліцы дадзенымі з файла"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Замяніць дадзеныя табліцы дадзенымі з файла"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Слоўнік дадзеных"
@@ -750,10 +762,10 @@ msgstr "Праверыць табліцу"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "База дадзеных"
@@ -762,37 +774,37 @@ msgstr "База дадзеных"
msgid "Last version"
msgstr "Стварыць сувязь"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Стварыць"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Стан"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Дзеяньне"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -801,11 +813,11 @@ msgstr ""
msgid "Versions"
msgstr "Пэрсыдзкая"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Толькі структуру"
@@ -815,8 +827,8 @@ msgstr "Толькі структуру"
msgid "Untracked tables"
msgstr "Праверыць табліцу"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Праверыць табліцу"
@@ -877,8 +889,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -897,8 +909,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
-"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
+"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
+"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:336
@@ -951,6 +963,13 @@ msgstr ""
"звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі "
"вы не павялічыце ліміты выкананьня php-скрыптоў."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Ваш SQL-запыт быў пасьпяхова выкананы"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -975,265 +994,283 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Каманды \"DROP DATABASE\" адключаныя."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Ці сапраўды вы жадаеце "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Працэдуры"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Дазваляе ўстаўляць і замяняць дадзеныя."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Гэтая апэрацыя можа заняць шмат часу. Працягваць?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Не зададзенае значэньне ў форме!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Гэта ня лік!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Пустое імя хосту!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Пустое імя карыстальніка!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Пусты пароль!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Паролі не супадаюць!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Дадаць новага карыстальніка"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Стварыць сувязь"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reload privileges"
msgid "Reloading Privileges"
msgstr "Перазагрузіць прывілеі"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Выдаліць выбраных карыстальнікаў"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Скасаваць"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Лякальны"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Працэсы"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Перайменаваць базу дадзеных у"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Перайменаваць базу дадзеных у"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Капіяваць базу дадзеных у"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кадыроўка"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Табліца мусіць мець прынамсі адно поле."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Стварыць табліцу"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Пошук"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL-запыт"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL-запыт"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Машыны"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Захаваць"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Схаваць"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-запыт"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-запыт"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ігнараваць"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Выберыце спасылкавы ключ"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Выберыце зьнешні ключ"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Выберыце поле для адлюстраваньня"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Згенэраваць пароль"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Згенэраваць"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Зьмяніць пароль"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пан"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1241,123 +1278,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Стварыць сувязь"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Базы дадзеных адсутнічаюць"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "Дадзеныя"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Папярэдняя старонка"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Наступная старонка"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Агулам"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Двайковы"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Сак"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Кра"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Тра"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Чэр"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Ліп"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Жні"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Кас"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Сту"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Сак"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Кра"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1365,178 +1407,178 @@ msgid "May"
msgstr "Тра"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Чэр"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Ліп"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Жні"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Кас"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Ліс"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Сьн"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ндз"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пан"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Аўт"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пят"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ндз"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Пан"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Аўт"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Цач"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Пят"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ндз"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пан"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Аўт"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сер"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Цач"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пят"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "выкарыстоўваецца"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1591,33 +1633,33 @@ msgid "No index defined!"
msgstr "Індэкс ня вызначаны!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Індэксы"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Унікальнае"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Сьціснутая"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Колькасьць элемэнтаў"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Камэнтар"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Рэдагаваць"
@@ -1641,18 +1683,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Базы дадзеных"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Памылка"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1660,7 +1702,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "Зьменена радкоў: %1$d."
msgstr[1] "Зьменена радкоў: %1$d."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1668,7 +1710,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Выдалена радкоў: %1$d."
msgstr[1] "Выдалена радкоў: %1$d."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1762,8 +1804,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@@ -1915,19 +1957,19 @@ msgstr "Табліц"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Дадзеныя"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Агулам"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Выкарыстаньне рэсурсаў"
@@ -2025,16 +2067,16 @@ msgstr ""
"Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сэрвэр"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
@@ -2069,7 +2111,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Дакумэнтацыя"
@@ -2220,7 +2262,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Структура"
@@ -2255,7 +2297,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў"
@@ -2425,7 +2467,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Скінуць"
@@ -2541,7 +2583,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2673,7 +2715,7 @@ msgid "Character set of the file"
msgstr "Кадыроўка файла:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Фармат"
@@ -3001,7 +3043,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Сэрвэры"
@@ -3764,7 +3806,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr "Аўтэнтыфікацыя..."
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
#, fuzzy
msgid "Authentication type"
msgstr "Аўтэнтыфікацыя..."
@@ -4237,9 +4279,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Пароль"
@@ -4259,8 +4301,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Імя карыстальніка:"
@@ -4376,7 +4418,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4529,7 +4571,7 @@ msgstr "Падзеі"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Назва"
@@ -4552,8 +4594,8 @@ msgid "Designer"
msgstr "Дызайнэр"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Прывілеі"
@@ -4565,7 +4607,7 @@ msgstr "Працэдуры"
msgid "Return type"
msgstr "Тып працэдуры"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4586,23 +4628,23 @@ msgstr "Сэрвэр не адказвае"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Падрабязьней..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Зьмяніць пароль"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Без пароля"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Пацьверджаньне"
@@ -4626,7 +4668,7 @@ msgid "Create"
msgstr "Стварыць"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Без прывілеяў"
@@ -4758,8 +4800,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -4782,7 +4824,7 @@ msgstr "Сьціск"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Няма"
@@ -4978,7 +5020,7 @@ msgstr "Сартаваць па ключы"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Налады"
@@ -5017,65 +5059,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Пераўтварэньне MIME-тыпу браўзэрам"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Скапіяваць"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Радок быў выдалены"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Спыніць"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "па запыту"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Паказаныя запісы"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "усяго"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запыт выконваўся %01.4f сэк"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Зьмяніць"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Дзеяньні з вынікамі запытаў"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Вэрсія для друку (з усім тэкстам)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Паказаць PDF-схему"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Стварыць сувязь"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Сувязь ня знойдзеная"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Інфармацыя пра вэрсію"
@@ -5518,8 +5560,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5643,9 +5685,9 @@ msgstr "Даступныя MIME-тыпы"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Хост"
@@ -5656,7 +5698,7 @@ msgid "Generation Time"
msgstr "Час стварэньня"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Вэрсія сэрвэра"
@@ -5999,7 +6041,32 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Пят"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Адправіць"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Дадаць новае поле"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Няма зьменаў"
@@ -6305,8 +6372,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Імя карыстальніка"
@@ -6329,7 +6396,7 @@ msgstr "Зьменная"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Значэньне"
@@ -6347,34 +6414,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Любы карыстальнік"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Выкарыстоўваць тэкставае поле"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Любы хост"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Лякальны"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Гэты хост"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Выкарыстоўваць табліцу хостаў"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6440,7 +6507,7 @@ msgstr "Атрыбуты"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Дадаткова"
@@ -6543,12 +6610,12 @@ msgid "Toggle scratchboard"
msgstr "Паказаць папярэдні прагляд"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Невядомая мова: %1$s."
@@ -6628,7 +6695,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Каляндар"
@@ -6663,10 +6730,6 @@ msgstr "Разьдзяляльнік"
msgid " Show this query here again "
msgstr " Паказаць гэты запыт зноў "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Адправіць"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Толькі прагляд"
@@ -6675,7 +6738,7 @@ msgstr "Толькі прагляд"
msgid "Location of the text file"
msgstr "Месцазнаходжаньне тэкставага файла"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
@@ -6727,19 +6790,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Незакрытае двукосьсе"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Няправільны ідэнтыфікатар"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Невядомы сымбаль пунктуацыі"
@@ -6794,7 +6857,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Індэкс"
@@ -6843,12 +6906,12 @@ msgid "As defined:"
msgstr "Як вызначана:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Першасны"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Поўнатэкстэкставае"
@@ -6862,7 +6925,7 @@ msgstr ""
"спытайце аўтара, што робіць %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Машына захаваньня дадзеных"
@@ -6870,13 +6933,13 @@ msgstr "Машына захаваньня дадзеных"
msgid "PARTITION definition"
msgstr "Азначэньне PARTITION"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Дадаць %s новыя палі"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7103,81 +7166,81 @@ msgstr "Файлы ў ZIP-архіве ня знойдзеныя!"
msgid "Error in ZIP archive:"
msgstr "Памылка ў ZIP-архіве:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Супастаўленьне падлучэньня да MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Вэрсія пратаколу"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Карыстальнік"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Кадыроўка MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Вэб-сэрвэр"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Вэрсія кліента MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Пашырэньне PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Паказаць інфармацыю пра PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Афіцыйная старонка phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрыбуты"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Няма зьменаў"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7190,7 +7253,7 @@ msgstr ""
"зьнешняга ўрываньня, і таму вам абавязкова трэба выправіць гэтую хібу ў "
"бясьпецы."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7199,7 +7262,7 @@ msgstr ""
"Вы ўключылі mbstring.func_overload у вашым канфігурацыйным файле PHP. Гэтая "
"опцыя несумяшчальная з phpMyAdmin і можа выклікаць пашкоджаньне дадзеных!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7209,7 +7272,7 @@ msgstr ""
"шматбайтавую кадыроўку. Без пашырэньня mbstring phpMyAdmin ня можа падзяляць "
"радкі карэктна, і гэта можа прывесьці да нечаканых вынікаў."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7217,25 +7280,25 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Канфігурацыйнаму файлу зараз патрэбная сакрэтная фраза (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7247,14 +7310,14 @@ msgstr ""
"Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб "
"высьветліць чаму, націсьніце %sтут%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7263,7 +7326,7 @@ msgstr ""
"Вэрсія вашай бібліятэкі MySQL для PHP %s адрозьніваецца ад вэрсіі вашага "
"сэрвэра MySQL %s. Гэта можа выклікаць непрадказальныя паводзіны."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7287,14 +7350,14 @@ msgstr "Файлы"
msgid "filter tables by name"
msgstr "імя табліцы"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Стварыць табліцу"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Калі ласка, выберыце базу дадзеных"
@@ -7695,77 +7758,77 @@ msgid "Includes all privileges except GRANT."
msgstr "Уключае ўсе прывілеі, апроч GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Дазваляе зьмяняць структуру існых табліц."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Дазваляе ствараць праграмы, якія захоўваюцца."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Дазваляе ствараць новыя табліцы."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Дазваляе ствараць часовыя табліцы."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў"
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Дазваляе ствараць новыя прагляды."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Дазваляе выдаляць дадзеныя."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Дазваляе выдаляць базы дадзеных і табліцы."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Дазваляе выдаляць табліцы."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
"Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7773,36 +7836,36 @@ msgstr ""
"прывілеяў."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Дазваляе ствараць і выдаляць індэксы."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Дазваляе ўстаўляць і замяняць дадзеныя."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Дазваляе блякаваць табліцы для бягучага патоку."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на "
"працягу гадзіны."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
"Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на "
"працягу гадзіны."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7810,59 +7873,59 @@ msgstr ""
"Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, "
"якія карыстальнік можа выканаць на працягу гадзіны."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
"Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Не працуе ў гэтай вэрсіі MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Неабходна для рэплікацыі slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Дазваляе чытаць дадзеныя."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Дае доступ да поўнага сьпісу базаў дадзеных."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Дазваляе спыняць сэрвэр."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7873,12 +7936,12 @@ msgstr ""
"глябальных зьменных або спыненьне патокаў іншых карыстальнікаў."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Дазваляе стварэньне і выдаленьне трыгераў"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Дазваляе зьмяняць дадзеныя."
@@ -7893,192 +7956,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "Няма"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Прывілеі, спэцыфічныя для табліцы"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глябальныя прывілеі"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Спэцыфічныя прывілеі базы дадзеных"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Адміністраваньне"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глябальныя прывілеі"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Спэцыфічныя прывілеі базы дадзеных"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Абмежаваньні рэсурсаў"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Інфармацыя пра ўваход"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Не зьмяняць пароль"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Не знойдзены карыстальнік."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Карыстальнік %s ужо існуе!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Быў дададзены новы карыстальнік."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Вы зьмянілі прывілеі для %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Вы анулявалі прывілеі для %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Пароль для %s пасьпяхова зьменены."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Выдаленьне %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "На выбраныя карыстальнікі для выдаленьня!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Перазагрузіць прывілеі"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Прывілеі былі пасьпяхова перазагружаныя."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Рэдагаваць прывілеі"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Ануляваць"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Любы"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Карыстальнікі"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Дадаць новага карыстальніка"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Выдаліць выбраных карыстальнікаў"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Спэцыфічныя прывілеі калёнак"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Дадаць прывілеі на наступную базу"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх "
"літаральнага выкарыстаньня"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Дадаць прывілеі на наступную табліцу"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... пакінуць старога."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... выдаліць старога з табліцы карыстальнікаў."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -8086,45 +8149,45 @@ msgstr ""
" ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць "
"прывілеі."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "База дадзеных для карыстальніка"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Няма"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Праверыць прывілеі для базы "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Карыстальнікі з правамі доступу да "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "глябальны"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "спэцыфічны для базы дадзеных"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "шаблён"
@@ -9277,7 +9340,7 @@ msgstr "Значэньне сэсіі"
msgid "Global value"
msgstr "Глябальнае значэньне"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9309,58 +9372,70 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Мадыфікацыі былі захаваныя"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
#, fuzzy
msgid "New server"
msgstr "Вэб-сэрвэр"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Лякальны"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Дакумэнтацыя па phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Дадзеныя"
@@ -9589,65 +9664,65 @@ msgstr "Табліца %1$s была пасьпяхова зьмененая"
msgid "Function"
msgstr "Функцыя"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " З-за вялікай даўжыні,
гэтае поле ня можа быць адрэдагаванае "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Двайковыя дадзеныя — не рэдагуюцца"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Уставіць як новы радок"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "У выглядзе SQL-запыту"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "і пасьля"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Перайсьці да папярэдняй старонкі"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Дадаць яшчэ адзін радок"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Вярнуцца да гэтай старонкі"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Рэдагаваць наступны радок"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або "
"CTRL+стрэлкі для перамяшчэньня ў любое іншае месца"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9811,7 +9886,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Дадаць да індэкса %s калёнку(і)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Колькасьць калёнак мусіць быць большай за нуль."
@@ -9837,102 +9912,102 @@ msgstr "Табліца %s была скапіяваная ў %s."
msgid "The table name is empty!"
msgstr "Пустая назва табліцы!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Зьмяніць парадак табліцы"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(асобна)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Перанесьці табліцу ў (база дадзеных.табліца):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Опцыі табліцы"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Перайменаваць табліцу ў"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Скапіяваць табліцу ў (база дадзеных.табліца):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Перайсьці да скапіяванай табліцы"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Абслугоўваньне табліцы"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Дэфрагмэнтаваць табліцу"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Кэш табліцы %s быў ачышчаны"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Скінуць кэш табліцы (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Дамп дадзеных табліцы"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Базы дадзеных адсутнічаюць"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Падтрымка падзелаў"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Падзел %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Прааналізаваць"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Праверыць"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Аптымізаваць"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Перабудаваць"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Адрамантаваць"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Скасаваць падзел на часткі"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Праверыць цэласнасьць дадзеных:"
@@ -9940,39 +10015,39 @@ msgstr "Праверыць цэласнасьць дадзеных:"
msgid "Show tables"
msgstr "Паказаць табліцы"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Выкарыстаньне прасторы"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Выкарыстаньне"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Эфэктыўнасьць"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Статыстыка радку"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Выразы"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "дынамічны"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Даўжыня радка"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Памер радка "
@@ -10060,57 +10135,57 @@ msgstr "Няма"
msgid "Column %s has been dropped"
msgstr "Табліца %s была выдаленая"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Першасны ключ быў дададзены да %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Быў дададзены індэкс для %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Паказаць інфармацыю пра PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Прагляд залежнасьцяў"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Прапанаваная структура табліцы"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Дадаць %s новыя палі"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "У канцы табліцы"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "У пачатку табліцы"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Пасьля %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Стварыць індэкс на %s калёнках"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "падзеленая на сэкцыі"
@@ -10138,109 +10213,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Тып запыту"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Дазваляе ўстаўляць і замяняць дадзеныя."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Базы дадзеных адсутнічаюць"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Дадзеныя"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Тып экспарту"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Пэрсыдзкая"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Стварыць сувязь"
diff --git a/po/be@latin.po b/po/be@latin.po
index aaa84999c1..3708601928 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -1,22 +1,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
-"Language: be@latin\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"
+"Language: be@latin\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: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Pakazać usie"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Pošuk"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Pošuk"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Paniesłasia"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Imia kluča"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza dadzienych %1$s stvoranaja."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Kamentar da bazy dadzienych: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Kamentar da tablicy"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Kamentar da tablicy"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -152,11 +152,11 @@ msgstr "Nazvy kalonak"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -166,8 +166,8 @@ msgstr "Typ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nul"
@@ -177,7 +177,7 @@ msgstr "Nul"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Pa zmoŭčańni"
@@ -200,39 +200,40 @@ msgstr "Źviazanaja z"
msgid "Comments"
msgstr "Kamentary"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nie"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Tak"
@@ -244,8 +245,8 @@ msgstr "Druk"
msgid "View dump (schema) of database"
msgstr "Prahladzieć damp (schiemu) bazy dadzienych"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
@@ -271,82 +272,82 @@ msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s"
msgid "Database %s has been copied to %s"
msgstr "Baza dadzienych %s była skapijavanaja ŭ %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Pierajmienavać bazu dadzienych u"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Kamanda"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Pierajmienavać bazu dadzienych u"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza dadzienych %s była vydalenaja."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
#| msgid "Copy database to"
msgid "Drop the database (DROP)"
msgstr "Kapijavać bazu dadzienych u"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kapijavać bazu dadzienych u"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tolki strukturu"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strukturu i dadzienyja"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Tolki dadzienyja"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "vykanać CREATE DATABASE pierad kapijavańniem"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Dadać %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Dadać značeńnie AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Dadać abmiežavańni"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pierajści da skapijavanaj bazy dadzienych"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Supastaŭleńnie"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -358,7 +359,7 @@ msgstr ""
"Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab "
"vyśvietlić čamu, naciśnicie %stut%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -368,17 +369,17 @@ msgstr "Relacyjnaja schiema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tablica"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Radki"
@@ -394,21 +395,21 @@ msgstr "vykarystoŭvajecca"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Stvoranaja"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Apošniaje abnaŭleńnie"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Apošniaja pravierka"
@@ -421,101 +422,94 @@ msgstr[0] "%s tablic(y)"
msgstr[1] "%s tablic(y)"
msgstr[2] "%s tablic(y)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Paradak"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "pramy"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "advarotny"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Pakazać"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kryter"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ustavić"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "I"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Vydalić"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Abo"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Źmianić"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Dadać/vydalić radok kryteru"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Abnavić zapyt"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Vykarystoŭvać tablicy"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-zapyt da BD %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Vykanać zapyt"
@@ -558,7 +552,7 @@ msgstr[2] "%s supadzieńniaŭ u tablicy %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Prahlad"
@@ -568,14 +562,15 @@ msgstr "Prahlad"
msgid "Delete the matches for the %s table?"
msgstr "Damp dadzienych tablicy"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Vydalić"
@@ -620,17 +615,17 @@ msgstr "Unutry pola:"
msgid "No tables found in database"
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tablica %s była ačyščanaja"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Vyhlad %s byŭ vydaleny"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tablica %s była vydalenaja"
@@ -643,14 +638,14 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
-"%sdakumentacyi%s."
+"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
+"sdakumentacyi%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -675,22 +670,22 @@ msgstr ""
"servery."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Z adznačanymi:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Adznačyć usio"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Źniać usie adznaki"
@@ -699,16 +694,16 @@ msgid "Check tables having overhead"
msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspart"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Versija dla druku"
@@ -720,28 +715,44 @@ msgstr "Ačyścić"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Vydalić"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Pravieryć tablicu"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Aptymizavać tablicu"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Ramantavać tablicu"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizavać tablicu"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Słoŭnik dadzienych"
@@ -755,10 +766,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Baza dadzienych"
@@ -766,36 +777,36 @@ msgstr "Baza dadzienych"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Stan"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Dziejańnie"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -803,11 +814,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -815,8 +826,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -875,8 +886,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -895,8 +906,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
-"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
+"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
+"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:336
@@ -949,6 +960,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -973,269 +991,287 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Kamandy \"DROP DATABASE\" adklučanyja."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Ci sapraŭdy vy žadajecie "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Pracedury"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Hetaja aperacyja moža zaniać šmat času. Praciahvać?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Nie zadadzienaje značeńnie ŭ formie!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Heta nia lik!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Pustoje imia chostu!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Pustoje imia karystalnika!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Pusty parol!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Paroli nie supadajuć!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Dadać novaha karystalnika"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create"
msgid "Create User"
msgstr "Stvaryć"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reload privileges"
msgid "Reloading Privileges"
msgstr "Pierazahruzić pryvilei"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Vydalić vybranych karystalnikaŭ"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Skasavać"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Pracesy"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Pierajmienavać bazu dadzienych u"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Pierajmienavać bazu dadzienych u"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kapijavać bazu dadzienych u"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kadyroŭka"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tablica musić mieć prynamsi adno pole."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Stvaryć tablicu"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Pošuk"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "pa zapytu"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show query box"
msgstr "U vyhladzie SQL-zapytu"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Mašyny"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Zachavać"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Schavać"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "pa zapytu"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search criteria"
msgstr "U vyhladzie SQL-zapytu"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignaravać"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Vybierycie spasyłkavy kluč"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Vybierycie źniešni kluč"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Vybierycie pole dla adlustravańnia"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Zgieneravać parol"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Zgieneravać"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Źmianić parol"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pan"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1243,123 +1279,129 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+#| msgid "No databases"
+msgid "up to date"
+msgstr "Bazy dadzienych adsutničajuć"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nijakaja"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Papiaredniaja staronka"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Nastupnaja staronka"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ahułam"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Dvajkovy"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Sak"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Kra"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Tra"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Čer"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Lip"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Žni"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Kas"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Sak"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Kra"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1367,178 +1409,178 @@ msgid "May"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Čer"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Žni"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Vier"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Śn"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ndz"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pan"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Aŭt"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Piat"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ndz"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pan"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Aŭt"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Sier"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Cač"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Piat"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ndz"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pan"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Aŭt"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sier"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cač"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Piat"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "vykarystoŭvajecca"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1594,33 +1636,33 @@ msgid "No index defined!"
msgstr "Indeks nia vyznačany!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksy"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikalnaje"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Ścisnutaja"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kolkaść elementaŭ"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Kamentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redagavać"
@@ -1644,18 +1686,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Bazy dadzienych"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Pamyłka"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1663,7 +1705,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "Źmieniena radkoŭ: %1$d."
msgstr[1] "Źmieniena radkoŭ: %1$d."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1671,7 +1713,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Vydalena radkoŭ: %1$d."
msgstr[1] "Vydalena radkoŭ: %1$d."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1765,8 +1807,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@@ -1918,19 +1960,19 @@ msgstr "Tablic"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dadzienyja"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Ahułam"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Vykarystańnie resursaŭ"
@@ -2031,16 +2073,16 @@ msgstr ""
"kanfihurycyju."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
@@ -2075,7 +2117,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dakumentacyja"
@@ -2227,7 +2269,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktura"
@@ -2262,7 +2304,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "tečka web-servera dla zahruzki fajłaŭ"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ"
@@ -2432,7 +2474,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Skinuć"
@@ -2548,7 +2590,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2677,7 +2719,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Farmat"
@@ -2998,7 +3040,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servery"
@@ -3743,7 +3785,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4203,9 +4245,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Parol"
@@ -4225,8 +4267,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4341,7 +4383,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4500,7 +4542,7 @@ msgstr "Padziei"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nazva"
@@ -4523,8 +4565,8 @@ msgid "Designer"
msgstr "Dyzajner"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Pryvilei"
@@ -4536,7 +4578,7 @@ msgstr "Pracedury"
msgid "Return type"
msgstr "Typ pracedury"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4557,23 +4599,23 @@ msgstr "Server nie adkazvaje"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Padrabiaźniej..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Źmianić parol"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Biez parola"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Paćvierdžańnie"
@@ -4597,7 +4639,7 @@ msgid "Create"
msgstr "Stvaryć"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Biez pryvilejaŭ"
@@ -4728,8 +4770,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@@ -4752,7 +4794,7 @@ msgstr "Ścisk"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Nijakaja"
@@ -4949,7 +4991,7 @@ msgstr "Sartavać pa klučy"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Nałady"
@@ -4988,66 +5030,66 @@ msgstr ""
msgid "Browser transformation"
msgstr "Pieraŭtvareńnie MIME-typu braŭzeram"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Skapijavać"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Radok byŭ vydaleny"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Spynić"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "pa zapytu"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Pakazanyja zapisy"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "usiaho"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Zapyt vykonvaŭsia %01.4f sek"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Źmianić"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Versija dla druku (z usim tekstam)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Pakazać PDF-schiemu"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Stvaryć"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Suviaź nia znojdzienaja"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Infarmacyja pra versiju"
@@ -5493,8 +5535,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5619,9 +5661,9 @@ msgstr "Dastupnyja MIME-typy"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Chost"
@@ -5632,7 +5674,7 @@ msgid "Generation Time"
msgstr "Čas stvareńnia"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versija servera"
@@ -5972,7 +6014,32 @@ msgstr "Nijakaja"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Piat"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Adpravić"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Dadać novaje pole"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Niama źmienaŭ"
@@ -6278,8 +6345,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Imia karystalnika"
@@ -6300,7 +6367,7 @@ msgstr "Źmiennaja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Značeńnie"
@@ -6318,34 +6385,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Luby karystalnik"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Vykarystoŭvać tekstavaje pole"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Luby chost"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lakalny"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Hety chost"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Vykarystoŭvać tablicu chostaŭ"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6411,7 +6478,7 @@ msgstr "Atrybuty"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Dadatkova"
@@ -6514,12 +6581,12 @@ msgid "Toggle scratchboard"
msgstr "Pakazać papiaredni prahlad"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nieviadomaja mova: %1$s."
@@ -6596,7 +6663,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6630,10 +6697,6 @@ msgstr "Raździalalnik"
msgid " Show this query here again "
msgstr " Pakazać hety zapyt znoŭ "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Adpravić"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Tolki prahlad"
@@ -6642,7 +6705,7 @@ msgstr "Tolki prahlad"
msgid "Location of the text file"
msgstr "Miescaznachodžańnie tekstavaha fajła"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "tečka web-servera dla zahruzki fajłaŭ"
@@ -6695,19 +6758,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Niezakrytaje dvukośsie"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Niapravilny identyfikatar"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Nieviadomy symbal punktuacyi"
@@ -6718,8 +6781,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
-"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
-"%sdakumentacyi%s."
+"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
+"sdakumentacyi%s."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6762,7 +6825,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6811,12 +6874,12 @@ msgid "As defined:"
msgstr "Jak vyznačana:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Pieršasny"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Poŭnatekstekstavaje"
@@ -6830,7 +6893,7 @@ msgstr ""
"spytajcie aŭtara, što robić %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Mašyna zachavańnia dadzienych"
@@ -6838,13 +6901,13 @@ msgstr "Mašyna zachavańnia dadzienych"
msgid "PARTITION definition"
msgstr "Aznačeńnie PARTITION"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Dadać %s novyja pali"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6927,8 +6990,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
-"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
-"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
+"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
+"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@@ -7075,81 +7138,81 @@ msgstr "Fajły ŭ ZIP-archivie nia znojdzienyja!"
msgid "Error in ZIP archive:"
msgstr "Pamyłka ŭ ZIP-archivie:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Supastaŭleńnie padłučeńnia da MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Versija pratakołu"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Karystalnik"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Kadyroŭka MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Web-server"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Versija klijenta MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Pašyreńnie PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Pakazać infarmacyju pra PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Aficyjnaja staronka phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atrybuty"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Niama źmienaŭ"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7162,7 +7225,7 @@ msgstr ""
"źniešniaha ŭryvańnia, i tamu vam abaviazkova treba vypravić hetuju chibu ŭ "
"biaśpiecy."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7171,7 +7234,7 @@ msgstr ""
"Vy ŭklučyli mbstring.func_overload u vašym kanfihuracyjnym fajle PHP. Hetaja "
"opcyja niesumiaščalnaja z phpMyAdmin i moža vyklikać paškodžańnie dadzienych!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7181,7 +7244,7 @@ msgstr ""
"šmatbajtavuju kadyroŭku. Biez pašyreńnia mbstring phpMyAdmin nia moža "
"padzialać radki karektna, i heta moža pryvieści da niečakanych vynikaŭ."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7189,25 +7252,25 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Kanfihuracyjnamu fajłu zaraz patrebnaja sakretnaja fraza (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7219,14 +7282,14 @@ msgstr ""
"Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab "
"vyśvietlić čamu, naciśnicie %stut%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7235,7 +7298,7 @@ msgstr ""
"Versija vašaj biblijateki MySQL dla PHP %s adroźnivajecca ad versii vašaha "
"servera MySQL %s. Heta moža vyklikać niepradkazalnyja pavodziny."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7258,14 +7321,14 @@ msgstr ""
msgid "filter tables by name"
msgstr "imia tablicy"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Stvaryć tablicu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Kali łaska, vybierycie bazu dadzienych"
@@ -7666,77 +7729,77 @@ msgid "Includes all privileges except GRANT."
msgstr "Uklučaje ŭsie pryvilei, aproč GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Dazvalaje źmianiać strukturu isnych tablic."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Dazvalaje stvarać novyja tablicy."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Dazvalaje stvarać časovyja tablicy."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ"
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Dazvalaje stvarać novyja prahlady."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Dazvalaje vydalać dadzienyja."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Dazvalaje vydalać bazy dadzienych i tablicy."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Dazvalaje vydalać tablicy."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7744,36 +7807,36 @@ msgstr ""
"pryvilejaŭ."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Dazvalaje stvarać i vydalać indeksy."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7781,59 +7844,59 @@ msgstr ""
"Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu "
"dadzienych, jakija karystalnik moža vykanać na praciahu hadziny."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nie pracuje ŭ hetaj versii MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Nieabchodna dla replikacyi slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Dazvalaje čytać dadzienyja."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Dazvalaje spyniać server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7844,12 +7907,12 @@ msgstr ""
"vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Dazvalaje źmianiać dadzienyja."
@@ -7864,239 +7927,239 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nijakaja"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Pryvilei, specyfičnyja dla tablicy"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Hlabalnyja pryvilei"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Specyfičnyja pryvilei bazy dadzienych"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administravańnie"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Hlabalnyja pryvilei"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Specyfičnyja pryvilei bazy dadzienych"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Abmiežavańni resursaŭ"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Infarmacyja pra ŭvachod"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nie źmianiać parol"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nie znojdzieny karystalnik."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Karystalnik %s užo isnuje!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Byŭ dadadzieny novy karystalnik."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Vy źmianili pryvilei dla %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Vy anulavali pryvilei dla %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Parol dla %s paśpiachova źmienieny."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Vydaleńnie %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Na vybranyja karystalniki dla vydaleńnia!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Pierazahruzić pryvilei"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Pryvilei byli paśpiachova pierazahružanyja."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Redagavać pryvilei"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Anulavać"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Luby"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Karystalniki"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Dadać novaha karystalnika"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Vydalić vybranych karystalnikaŭ"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Specyfičnyja pryvilei kalonak"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Dadać pryvilei na nastupnuju bazu"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Dadać pryvilei na nastupnuju tablicu"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... pakinuć staroha."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... vydalić staroha z tablicy karystalnikaŭ."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Baza dadzienych dla karystalnika"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nijakaja"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Karystalniki z pravami dostupu da \"%s\""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "hlabalny"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "specyfičny dla bazy dadzienych"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "šablon"
@@ -9245,7 +9308,7 @@ msgstr "Značeńnie sesii"
msgid "Global value"
msgstr "Hlabalnaje značeńnie"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9277,55 +9340,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Madyfikacyi byli zachavanyja"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9550,64 +9625,64 @@ msgstr "Tablica %1$s była paśpiachova źmienienaja"
msgid "Function"
msgstr "Funkcyja"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Dvajkovyja dadzienyja — nie redagujucca"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Ustavić jak novy radok"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "i paśla"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Pierajści da papiaredniaj staronki"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Dadać jašče adzin radok"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Viarnucca da hetaj staronki"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Redagavać nastupny radok"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
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"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9770,7 +9845,7 @@ msgstr "(\"PRIMARY\" musić być imiem pieršasnaha kluča i tolki jaho!)"
msgid "Add to index %s column(s)"
msgstr "Dadać da indeksa %s kalonku(i)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Kolkaść kalonak musić być bolšaj za nul."
@@ -9796,103 +9871,103 @@ msgstr "Tablica %s była skapijavanaja ŭ %s."
msgid "The table name is empty!"
msgstr "Pustaja nazva tablicy!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Źmianić paradak tablicy"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(asobna)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Pieranieści tablicu ŭ (baza dadzienych.tablica):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcyi tablicy"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Pierajmienavać tablicu ŭ"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Pierajści da skapijavanaj tablicy"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Absłuhoŭvańnie tablicy"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defrahmentavać tablicu"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Keš tablicy %s byŭ ačyščany"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Skinuć keš tablicy (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Damp dadzienych tablicy"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
msgstr "Kapijavać bazu dadzienych u"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Padtrymka padziełaŭ"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Padzieł %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Praanalizavać"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Pravieryć"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Aptymizavać"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Pierabudavać"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Adramantavać"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Skasavać padzieł na častki"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Pravieryć cełasnaść dadzienych:"
@@ -9900,39 +9975,39 @@ msgstr "Pravieryć cełasnaść dadzienych:"
msgid "Show tables"
msgstr "Pakazać tablicy"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Vykarystańnie prastory"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Vykarystańnie"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektyŭnaść"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statystyka radku"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Vyrazy"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamičny"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Daŭžynia radka"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Pamier radka "
@@ -10020,57 +10095,57 @@ msgstr "Nijakaja"
msgid "Column %s has been dropped"
msgstr "Tablica %s była vydalenaja"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Pieršasny kluč byŭ dadadzieny da %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Byŭ dadadzieny indeks dla %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Pakazać infarmacyju pra PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Prahlad zaležnaściaŭ"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Prapanavanaja struktura tablicy"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Dadać %s novyja pali"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "U kancy tablicy"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "U pačatku tablicy"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Paśla %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Stvaryć indeks na %s kalonkach"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "padzielenaja na sekcyi"
@@ -10098,107 +10173,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Typ zapytu"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Bazy dadzienych adsutničajuć"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index ee5ef5d1a5..f670a7424e 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-22 12:51+0200\n"
"Last-Translator: \n"
"Language-Team: bulgarian \n"
-"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Показване всички"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Търсене"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Търсене"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Изпълнение"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Име на ключа"
@@ -118,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Базата данни %1$s беше създадена."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар към базата от данни: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Коментари към таблицата"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,7 +136,7 @@ msgstr "Коментари към таблицата"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kолона"
@@ -147,11 +147,11 @@ msgstr "Kолона"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -161,8 +161,8 @@ msgstr "Тип"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Празно"
@@ -172,7 +172,7 @@ msgstr "Празно"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "По подразбиране"
@@ -195,39 +195,40 @@ msgstr "Свързана към"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Да"
@@ -239,8 +240,8 @@ msgstr "Печат"
msgid "View dump (schema) of database"
msgstr "Преглед на схема (дъмп) на база данни"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "В базата от данни няма таблици."
@@ -266,85 +267,85 @@ msgstr "Базата данни %s беше преименувана на %s"
msgid "Database %s has been copied to %s"
msgstr "Базата данни %s беше копирана като %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Преименуване на базата от данни на"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Команда"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Изтриване на база данни"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Базата данни %s беше изтрита."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Изтриване на база данни (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копиране на базата от данни в"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Само структурата"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структурата и данните"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Само данните"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Изпълняване на CREATE DATABASE преди копирането"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Добавяне на %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Добавяне на AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Добавяне на ограничение"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Прехвърляна към копираната база от данни"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Колация"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Редакция или експорт на релационна схема"
@@ -352,17 +353,17 @@ msgstr "Редакция или експорт на релационна схе
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Таблица"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Редове"
@@ -378,21 +379,21 @@ msgstr "зает"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Дата на създаване"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Последно обновление"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Последна проверка"
@@ -403,97 +404,90 @@ msgid_plural "%s tables"
msgstr[0] "%s таблица"
msgstr[1] "%s таблици"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL заявката беше изпълнена успешно"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Изберете поне една колона за показване"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Превключване към"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Сортиране"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Възходящо"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Низходящо"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Показване"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Критерий"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Вмъкни"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "И"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Изтрий"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Или"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Промени"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Добавяне/изтриване ред по критерий"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Добавияне/изтриване колони"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Допълни Запитването"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Използвай таблицата"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-заявка към базата от данни %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Изпълни заявката"
@@ -534,7 +528,7 @@ msgstr[1] "%s съвпадения в таблица %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Прелистване"
@@ -543,14 +537,15 @@ msgstr "Прелистване"
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Изтриване"
@@ -589,17 +584,17 @@ msgstr "В колона:"
msgid "No tables found in database"
msgstr "В базата данни няма таблици"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблицата %s беше изчистена"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Изглед %s беше изтрит"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблицата %s беше изтрита"
@@ -612,11 +607,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -640,22 +635,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Когато има отметка:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Маркиране на всичко"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Размаркиране на всичко"
@@ -664,16 +659,16 @@ msgid "Check tables having overhead"
msgstr "Маркиране на таблиците със загубено място"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Експортиране"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Преглед за печат"
@@ -685,28 +680,44 @@ msgstr "Изчистване"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Унищожаване"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Проверка на таблицата"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Оптимизация на таблицата"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Поправяне на таблицата"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Анализиране на таблицата"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Заместване на данните от таблицата с данните от файла"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Заместване на данните от таблицата с данните от файла"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Речник на данните"
@@ -720,10 +731,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "База данни"
@@ -731,36 +742,36 @@ msgstr "База данни"
msgid "Last version"
msgstr "Последна версия"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Създаден"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Съвременен"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Състояние"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Действие"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "активен"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "неактивен"
@@ -768,11 +779,11 @@ msgstr "неактивен"
msgid "Versions"
msgstr "Версии"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -780,8 +791,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -840,8 +851,8 @@ msgstr "Схемата беше записана във файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sdдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -903,6 +914,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL заявката беше изпълнена успешно"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -929,223 +947,241 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" заявката е забранена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Наистина ли искате да изпълните "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Изтриване на процедура"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr ""
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Операцията може да продължи дълго. Да продължи ли въпреки това?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Липсва стойност във полето на формата!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Това не е число!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Името на хоста е празно!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Потребителското име е празно!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Паролата е празна!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Паролата не е същата!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Добавяне нов потребител"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Създаване на потребител"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Презареждане на привилегиите"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Изтриване на маркираните потребители"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Зареждане"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Преименуване на база данни"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Презареждане на база данни"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Копиране на база данни"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Промяна на знаков набор"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Таблицата трябва да има поне една колона"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Създабане Таблица"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Търсене"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr ""
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Записване"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнориране"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Изберете колона за показване"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
msgid "Generate password"
msgstr "Генериране на парола"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генериране"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Смяна на парола"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Още"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1153,254 +1189,259 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Няма бази от данни"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Преден"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Следващ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Днес"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "януари"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "март"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "април"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "май"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "юни"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "юли"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "август"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "октомври"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "яну"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "фев"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "март"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "май"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "юни"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "юли"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "септ"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "ное"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "дек"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "неделя"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "понеделник"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "вторник"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "петък"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "нд"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "пн"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "вт"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "ср"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "чт"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "пт"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "сб"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "нд"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "пн"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "вт"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "ср"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "чт"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "пт"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "минута"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "секунда"
@@ -1449,33 +1490,33 @@ msgid "No index defined!"
msgstr "Не е дефиниран индекс!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Индекси"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Уникално"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Кардиналност"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Коментар"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редактиране"
@@ -1497,32 +1538,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Бази от данни"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Грешка"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d ред изтрит."
msgstr[1] "%1$d реда изтрити."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1614,8 +1655,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1761,19 +1802,19 @@ msgstr "Таблици"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Данни"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Общо"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Загубено място"
@@ -1862,16 +1903,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сървър"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Осъвременете до %s %s или по-нова."
@@ -1906,7 +1947,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Документация"
@@ -2054,7 +2095,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Структура"
@@ -2088,7 +2129,7 @@ msgid "Select from the web server upload directory %s:"
msgstr ""
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Директорията която сте указали за upload не може да бъде достигната"
@@ -2246,7 +2287,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Изчистване"
@@ -2360,7 +2401,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2483,7 +2524,7 @@ msgid "Character set of the file"
msgstr "Знаков набор на файла"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Формат"
@@ -2782,7 +2823,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Сървъри"
@@ -3491,7 +3532,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -3941,9 +3982,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Парола"
@@ -3963,8 +4004,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Потребителско име"
@@ -4075,7 +4116,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4222,7 +4263,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Име"
@@ -4245,8 +4286,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Привилегии"
@@ -4258,7 +4299,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4279,23 +4320,23 @@ msgstr "Няма отговор от сървъра"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Смяна на паролата"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Без парола"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Отново"
@@ -4317,7 +4358,7 @@ msgid "Create"
msgstr "Създай"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Няма привилегии"
@@ -4423,8 +4464,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4442,7 +4483,7 @@ msgstr "Компресия:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Няма"
@@ -4605,7 +4646,7 @@ msgstr "Сортиране по ключ"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Настройки"
@@ -4638,62 +4679,62 @@ msgstr "Показване на BLOB-данните"
msgid "Browser transformation"
msgstr "Браузърна трансформация"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Редът беше изтрит"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "СТОП"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "в запитването"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Показване на записи"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "общо"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Заявката отне %01.4f секунди"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Променяне"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Операции с резулатата от заявката"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Преглед за печат (с пълните текстове)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Показване на диаграма"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Създаване на изглед"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Връзките не са намерени"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Информация за весията"
@@ -5074,8 +5115,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5174,9 +5215,9 @@ msgstr "Достъпни MIME-типове"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Хост"
@@ -5187,7 +5228,7 @@ msgid "Generation Time"
msgstr "Време на генериране"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Версия на сървъра"
@@ -5515,7 +5556,30 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "пт"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Изпълнение"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Няма промяна"
@@ -5821,8 +5885,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Потребителско име"
@@ -5843,7 +5907,7 @@ msgstr "Променлива"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Стойност"
@@ -5861,34 +5925,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Всеки потребител"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Използвай текстовото поле"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Всеки хост"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Локален"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Този Хост"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Използвай таблица Host"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -5950,7 +6014,7 @@ msgstr "Атрибути"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Допълнително"
@@ -6051,12 +6115,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6135,7 +6199,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Изпълнение на SQL заявка/заявки към база от данни %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Календар"
@@ -6170,10 +6234,6 @@ msgstr "Разделител"
msgid " Show this query here again "
msgstr " Показване на заявката отново "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Изпълнение"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Само показване"
@@ -6182,7 +6242,7 @@ msgstr "Само показване"
msgid "Location of the text file"
msgstr "Местоположение на текстовия файл"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "директорията за upload на уеб сървъра"
@@ -6233,19 +6293,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Незатворена кавичка"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Невалиден идентификатор"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Непознат пунктуационен низ"
@@ -6256,8 +6316,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидатора не може да бъде инициализиран. Моля проверете дали сте "
-"инсталирали необходимите PHP разширения, така както е описано в "
-"%sдокументацията%s."
+"инсталирали необходимите PHP разширения, така както е описано в %"
+"sдокументацията%s."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6294,7 +6354,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Индекс"
@@ -6344,12 +6404,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primary"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Пълнотекстово"
@@ -6363,7 +6423,7 @@ msgstr ""
"относно това какво прави %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Хранилище на данни"
@@ -6371,12 +6431,12 @@ msgstr "Хранилище на данни"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Добавяне на %s колона(и)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Трябва да добавите поне една колона."
@@ -6543,82 +6603,82 @@ msgstr "Не са открити файлове в ZIP архива!"
msgid "Error in ZIP archive:"
msgstr "Грешка в ZIP архива:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Общи възможности на релациите"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Колация на MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Общи възможности на релациите"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Версия на протокола"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Потребител"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Набор от знаци на MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Версия на клиента за MySQL"
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "Версия на PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Информация за PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Официалната страница на phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибути"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Няма промяна"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6631,21 +6691,21 @@ msgstr ""
"да оправите тази дупка в сигурността като зададете парола на потребителя "
"'root'."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6653,24 +6713,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфигурационния файл има нужда от тайна парола (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -6679,21 +6739,21 @@ msgstr ""
"Конфигурация на phpMyAdmin е непълна и някои разширени функции са "
"деактивирани. За да разберете защо натиснете %sтук%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6714,13 +6774,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "име на таблицата"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Създай нова Страница"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Моля изберете база от данни"
@@ -7108,77 +7168,77 @@ msgid "Includes all privileges except GRANT."
msgstr "Включва всички привилегии освен GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Позволява променяне на структурата на съществуващи таблици."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Позволяване на променяне и издриване на Съхранени Процедури."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Позволява създаване на нови бази от данни и таблици."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Позволяване на създаването на Съхранени Процедури."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Позволява създаване на нови таблици."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Позволява създаването на временни таблици."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Позволяване на създаването, изтриването и преименуването на потребителски "
"акаунти."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Позволяване на създаването на нови Изгледи."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Позволява изтриване на данни."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Позволява изтриване на бази от данни и таблици."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Позволява изтриване на таблици."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Позволяване на стартирането на Съхранени Процедури."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Позволява импортиране на данни от и експортиране на данни във файлове."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7186,35 +7246,35 @@ msgstr ""
"с привилегиите."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Позволява създаване и премахване на индекси."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Позволява вмъкване и заменяне на данни."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Позволява заключване на таблици за текущата нишка."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Ограничава броя на новите конекции, които потребителя може да отвори на час."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
"Ограничава броя на заявките, които потребителя може да изпрати към сървъра "
"на час."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7222,62 +7282,62 @@ msgstr ""
"Ограничава броя на командите, които променят някоя таблица или база от "
"данни, които даден потребител може да стартира за час."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, fuzzy
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
"Ограничава броя на новите конекции, които потребителя може да отвори на час."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Няма ефект в тази версия на MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Позволява презареждане на сървърните настройки и изчистване на кеша на "
"сървъра."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Дава правото на потребител да знае къде са slaves / masters."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Нужно за replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Позволява четене на данни."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Дава достъп до пълния списък на базите данни."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Позволяване на изпълнението на SHOW CREATE VIEW заявки."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Позволява спиране на сървъра."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7288,12 +7348,12 @@ msgstr ""
"глобални променливи или спиране на нишка на други потребители."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Позволява създаване и премахване на тригери"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Позволява промяна на данни."
@@ -7306,143 +7366,143 @@ msgctxt "None privileges"
msgid "None"
msgstr "Няма"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Привилегии специфични за таблицата"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Забележка: Имената на привилегиите на MySQL са показани на английски "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глобални привилегии"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Привилегии специфични за базата от данни"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Администрация"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глобални привилегии"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Привилегии специфични за базата от данни"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ресурсни ограничения"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Забележка: Установяването на тези опции с 0 (нула) премахва ограничението."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Информация за логване"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Да не се сменя паролата"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Няма потребител."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Потребител %s вече съществува!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Вие добавихте нов потребител."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Вие променихте привилегиите за %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Вие отменихте привилегиите за %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Паролата на %s беше променена успешно."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Изтриване на %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Не за избрани потребители за изтриване!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Презареждане на привилегиите"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Избраните потребители бяха изтрити успешно."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Привилегиите бяха презаредени успешно."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Редактиране на привилегиите"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Отменяне"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Всеки"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Преглед на потребителите"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Дадени"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Добавяне на нов потребител"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Отстраняване на избраните потребители"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Отмяна на всички активни привилегии от потребителите и след това изтриване."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Изтриване на базите от данни които имат имена като тези на потребителите."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските привилегии директно от таблицата "
"на привилегиите на MySQL. Съдържанието на тази таблица може да се различава "
@@ -7450,49 +7510,49 @@ msgstr ""
"ръка. В този случай, трябва да %sпрезаредите привилегиите%s преди да "
"продължите."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Избрания потребител не беше открит в таблицата с привилегиите."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Привилегии специфични за колоната"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Добавяне на привилегии към следната база от данни"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Добавяне на привилегии към следната таблица"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Промяна на логин информацията / Копиране на потребител"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Създаване нов потребител със същите привилегии и ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... запазване на стария."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... изтриване на стария от таблицата с потребители."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... отменяне на всички активни привилегии от стария и след това изтриване."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7500,42 +7560,42 @@ msgstr ""
" ... изтриване на стария от таблицата с потребители и след това презареждане "
"на привилегиите."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "База от данни за потребителя"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Няма"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Създаване на база от данни със същото име и даване на пълни привилегии"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Даване на пълни привилегии над база данни "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Потребители които имат достъп до "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "глобален"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "специфични за базата от данни"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "знак за заместване"
@@ -8558,7 +8618,7 @@ msgstr "Сесийна стойност"
msgid "Global value"
msgstr "Глобална стойност"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8590,56 +8650,68 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Промените бяха съхранени"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Зареждане"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin документация"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8865,64 +8937,64 @@ msgstr ""
msgid "Function"
msgstr "Функция"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Поради дължината си,
това поле може да не е редактируемо "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Двоично - не се редактира"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Вмъкване като нов ред"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "и след това"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Обратно"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Друг нов ред"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Връщане към тази страница"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Редакция на следващия ред"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Използвайте клавиша TAB за да премествате крурсора от стойност на стойност "
"или CTRL+стрелка за да премествате курсора в съответната посока"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9078,7 +9150,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Добавяне към индекса на %s колона(и)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Броя на колоните трябва да е по-голям от нула."
@@ -9104,99 +9176,99 @@ msgstr "Таблица %s беше копирана в %s."
msgid "The table name is empty!"
msgstr "Името на таблицата е празно!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Подреждане на таблицата по"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(еднократно)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Преместване на таблица към (база от данни.таблица):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Опции на таблицата"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Преименуване на таблицата на"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Копиране на таблица (база от данни.таблица):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Превключване към копираната таблица"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Поддръжка на таблицата"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Дефрагментиране на таблица"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Кеша на таблица %s беше изчистен"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Изпразване кеша на таблицата (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr ""
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Изтриване на таблица (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Поддръжка на таблицата"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Чешки"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Поправяне"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Проверка на интегритета на връзките:"
@@ -9204,39 +9276,39 @@ msgstr "Проверка на интегритета на връзките:"
msgid "Show tables"
msgstr "Показване таблици"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Използвано място"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Използвани"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Ефективни"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Статистика за редовете"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Заявление"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "динамичен"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Дължина на реда"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Размер на ред "
@@ -9316,55 +9388,55 @@ msgstr "Няма"
msgid "Column %s has been dropped"
msgstr "Таблицата %s беше изтрита"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Беше добавен първичен ключ към %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Беше добавен индекс на %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Показване на версиите"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Преглед на релациите"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Анализ на таблицата"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Добавяне колона"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "В края на таблицата"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "В началото на таблицата"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "След %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Създаване на индекс върху %s колони"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9392,107 +9464,131 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Тип на заявката"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Няма бази от данни"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Дата"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Показване на версиите"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Версия"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Версия на сървъра"
@@ -9503,8 +9599,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка "
-"%s."
+"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %"
+"s."
#: themes.php:41
msgid "Get more themes!"
diff --git a/po/bn.po b/po/bn.po
index cf3012bfc9..c3a5b3cbaf 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন \n"
"Language-Team: bangla \n"
-"Language: bn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "সবগুলো দেখাও"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "খুঁজুন"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "খুঁজুন"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "যাও"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Keyname"
@@ -118,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ডাটাবেজ মন্তব্যসমূহঃ"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "টেবিলের মন্তব্য সমূহ"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,7 +136,7 @@ msgstr "টেবিলের মন্তব্য সমূহ"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "কলামের"
@@ -147,11 +147,11 @@ msgstr "কলামের"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "ধরন"
@@ -161,8 +161,8 @@ msgstr "ধরন"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "খালি"
@@ -172,7 +172,7 @@ msgstr "খালি"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "ডিফল্ট"
@@ -195,39 +195,40 @@ msgstr "সংযুক্তি হবে"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "না"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "হ্যাঁ"
@@ -239,8 +240,8 @@ msgstr "প্রিন্ট কর"
msgid "View dump (schema) of database"
msgstr "ডাটাবেজ ওর (schema) ভান্ডারটি দেখা হোক"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।"
@@ -266,81 +267,81 @@ msgstr "%s ডাটাবেজটির নাম পরিবর্তন ক
msgid "Database %s has been copied to %s"
msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "ডাটাবেজ রিনেম কর"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "নির্দেশ"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "ডাটাবেজ রিনেম কর"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে"
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "কোন ডাটাবেজ নাই"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "ডাটাবেজ কপি করঃ"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "শুধুই গঠনপ্রণালী"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "গঠনপ্রণালী এবং তথ্য"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "শুধু ডাটা"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "সংযুক্ত %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT এর মান সংযুক্ত করুন"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "constraints সংযুক্ত করুন"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তিত হবে"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -352,7 +353,7 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -362,17 +363,17 @@ msgstr "Relational schema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "টেবিল"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rows"
@@ -388,21 +389,21 @@ msgstr "in use"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Creation"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "সর্বশেষ আপডেট"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Last check"
@@ -414,101 +415,94 @@ msgid_plural "%s tables"
msgstr[0] "%s table(s)"
msgstr[1] "%s table(s)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Your SQL query has been executed successfully"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "সাজাঁন"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascending"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descending"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "দেখান"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "ক্ষেত্র"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "এবং"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "অথবা"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modify"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Add/Delete Criteria Row"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Add/Delete Field Columns"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Update Query"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "টেবিল ব্যাবহারকারী"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL query on database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Submit Query"
@@ -550,7 +544,7 @@ msgstr[1] "%s match(es) inside table %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "ব্রাউজ করুন"
@@ -560,14 +554,15 @@ msgstr "ব্রাউজ করুন"
msgid "Delete the matches for the %s table?"
msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "মুছে ফেল"
@@ -611,17 +606,17 @@ msgstr "Inside table(s):"
msgid "No tables found in database"
msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Table %s has been emptied"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "View %s has been dropped"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Table %s has been dropped"
@@ -634,11 +629,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -662,22 +657,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "সব পরীক্ষা করুন"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Uncheck All"
@@ -686,16 +681,16 @@ msgid "Check tables having overhead"
msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Print view"
@@ -707,28 +702,45 @@ msgstr "খালি"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "মুছে ফেল"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "টেবিল পরীক্ষা কর"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "টেবিল অপটিমাইজ করুন"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "টেবিল রিপেয়ার করুন"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "টেবিল বিশ্লেষণ কর"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "কোন ডাটাবেজ নাই"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "ডাটা অভিধান"
@@ -743,10 +755,10 @@ msgstr "টেবিল পরীক্ষা কর"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "ডাটাবেজ"
@@ -755,37 +767,37 @@ msgstr "ডাটাবেজ"
msgid "Last version"
msgstr "Server version"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "তৈরী করুন"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "অবস্থা"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Action"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -794,11 +806,11 @@ msgstr ""
msgid "Versions"
msgstr "পারসিয়ান"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Structure only"
@@ -808,8 +820,8 @@ msgstr "Structure only"
msgid "Untracked tables"
msgstr "টেবিল পরীক্ষা কর"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "টেবিল পরীক্ষা কর"
@@ -869,11 +881,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -939,6 +951,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Your SQL query has been executed successfully"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -963,264 +982,282 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "আপনি কি সত্যি চান?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Procedures"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Allows inserting and replacing data."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "This operation could take a long time. Proceed anyway?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Missing value in the form!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "এটি কোন সংখ্যা না"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "হোষ্ট নাম পূরন করা হয়নি"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "The user name is empty!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "পাসওয়ার্ড দেওয়া হয়নি"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "The passwords aren't the same!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "একটি নতুন ইউজার যোগ করুন"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Server version"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reload privileges"
msgid "Reloading Privileges"
msgstr "Reload privileges"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Remove selected users"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "লোকাল"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Processes"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ঠিক আছে"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "ডাটাবেজ রিনেম কর"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "ডাটাবেজ রিনেম কর"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "ডাটাবেজ কপি করঃ"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Charset"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Table must have at least one field."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "একটি নতুন পাতা তৈরী কর"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "খুঁজুন"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL query"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL query"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "ইঞ্জিনসমূহ"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "সেভ করুন"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL query"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL query"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "পাসওয়ার্ড তৈরী কর"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "তৈরী কর"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "পাসওয়ার্ড পরিবর্তন কর"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "সোমবার"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1228,123 +1265,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Server version"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "কোন ডাটাবেজ নাই"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "ডাটা"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "পূর্ববর্তী"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "পরবর্তী"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "মোট"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "বাইনারী"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "মার্চ"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "এপ্রিল"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "মে"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "জুন"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "জুলাই"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "আগস্ট"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "অক্টোবর"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "জানুয়ারী"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "ফেব্রুয়ারী"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "মার্চ"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "এপ্রিল"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1352,176 +1394,176 @@ msgid "May"
msgstr "মে"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "জুন"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "জুলাই"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "আগস্ট"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "সেপ্টেমবর"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "অক্টোবর"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "নভেম্বর"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "ডিসেম্বর"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "রবিবার"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "সোমবার"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "মঙ্গলবার"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "শুক্রবার"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "রবিবার"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "সোমবার"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "মঙ্গলবার"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "বুধবার"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "বৃহস্পতিবার"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "শুক্রবার"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "শনিবার"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "রবিবার"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "সোমবার"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "মঙ্গলবার"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "বুধবার"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "বৃহস্পতিবার"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "শুক্রবার"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "শনিবার"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1573,34 +1615,34 @@ msgid "No index defined!"
msgstr "No index defined!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "ইন্ডেস্ক সমূহ"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unique"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "মন্তব্যসমূহ"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "সম্পাদনা কর"
@@ -1622,25 +1664,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "ডাটাবেজসমূহ Databases"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "ভূল"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1648,7 +1690,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "No rows selected"
msgstr[1] "No rows selected"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1742,8 +1784,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -1893,19 +1935,19 @@ msgstr "টেবিলসমূহ"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "ডাটা"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "মোট"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -2002,16 +2044,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "সার্ভার"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Invalid authentication method set in configuration:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "You should upgrade to %s %s or later."
@@ -2046,7 +2088,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "বর্ণনা"
@@ -2196,7 +2238,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Structure"
@@ -2231,7 +2273,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "web server upload directory"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "The directory you set for upload work cannot be reached"
@@ -2401,7 +2443,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "রিসেট করুন"
@@ -2518,7 +2560,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2650,7 +2692,7 @@ msgid "Character set of the file"
msgstr "ফাইল এর অক্ষরসমূহঃ"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "ফরমেট"
@@ -2978,7 +3020,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "সার্ভারসমূহ"
@@ -3739,7 +3781,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4211,9 +4253,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "পাসওয়ার্ড"
@@ -4233,8 +4275,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "ব্যাবহারকারী"
@@ -4350,7 +4392,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4498,7 +4540,7 @@ msgstr "Sent"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "নাম"
@@ -4521,8 +4563,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privileges"
@@ -4534,7 +4576,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4553,23 +4595,23 @@ msgstr "The server is not responding"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "পাসওয়ার্ড পরিবর্তন কর"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "কোন পাসওয়ার্ড নাই"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Re-type"
@@ -4593,7 +4635,7 @@ msgid "Create"
msgstr "তৈরী করুন"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "কোন সুবিধা নাই"
@@ -4723,12 +4765,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4747,7 +4789,7 @@ msgstr "সংকোচন"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "কোনটিই নয়"
@@ -4942,7 +4984,7 @@ msgstr "Sort by key"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Operations"
@@ -4983,65 +5025,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "সারিটি মুছে ফেলা হয়েছে"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "মোট"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Change"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Display PDF schema"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Server version"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "লিংক পাওয়া যায়নি"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Version information"
@@ -5445,8 +5487,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5570,9 +5612,9 @@ msgstr "Available MIME types"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "হোষ্ট"
@@ -5583,7 +5625,7 @@ msgid "Generation Time"
msgstr "তৈরী করার জন্য সময়"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Server version"
@@ -5929,7 +5971,30 @@ msgstr "কোনটিই নয়"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "শুক্রবার"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Submit"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "No change"
@@ -6234,8 +6299,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "ব্যাভারকারীর নাম"
@@ -6258,7 +6323,7 @@ msgstr "চলক"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "মান"
@@ -6276,34 +6341,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "যেকোন ব্যাবহারকারী"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Use text field"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "যেকোন হোষ্ট"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "লোকাল"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "This Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6367,7 +6432,7 @@ msgstr "Attributes"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "অতিরিক্ত"
@@ -6471,12 +6536,12 @@ msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unknown language: %1$s."
@@ -6555,7 +6620,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Run SQL query/queries on database %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "ক্যালেন্ডার"
@@ -6590,10 +6655,6 @@ msgstr "Delimiter"
msgid " Show this query here again "
msgstr " Show this query here again "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Submit"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "শুধু দেখ"
@@ -6602,7 +6663,7 @@ msgstr "শুধু দেখ"
msgid "Location of the text file"
msgstr "Location of the text file"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web server upload directory"
@@ -6652,19 +6713,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Unclosed quote"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Invalid Identifer"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
@@ -6718,7 +6779,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "ইন্ডেস্ক"
@@ -6767,12 +6828,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "প্রাথমিক"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -6786,7 +6847,7 @@ msgstr ""
"author what %s does."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Storage Engine"
@@ -6794,13 +6855,13 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr " %s ক্ষেত্রসমূহ যোগ কর"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7023,82 +7084,82 @@ msgstr "No files found inside ZIP archive!"
msgid "Error in ZIP archive:"
msgstr "ZIP archive: এ ভূল আছে"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "General relation features"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL connection collation"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "General relation features"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protocol version"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "User"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL charset"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL client version"
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP Version"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Show PHP information"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Official phpMyAdmin Homepage"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Attributes"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "No change"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7110,7 +7171,7 @@ msgstr ""
"running with this default, is open to intrusion, and you really should fix "
"this security hole."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7120,7 +7181,7 @@ msgstr ""
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7130,7 +7191,7 @@ msgstr ""
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7138,25 +7199,25 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"The configuration file now needs a secret passphrase (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7168,21 +7229,21 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7204,13 +7265,13 @@ msgstr "ক্ষেত্রসমূহ"
msgid "filter tables by name"
msgstr "টেবিল অর্ডার পরিবর্তন কর"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "একটি নতুন পাতা তৈরী কর"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Please select a database"
@@ -7608,107 +7669,107 @@ msgid "Includes all privileges except GRANT."
msgstr "Includes all privileges except GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Allows altering the structure of existing tables."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Allows altering and dropping stored routines."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Allows creating new databases and tables."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Allows creating stored routines."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Allows creating new tables."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Allows creating temporary tables."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Allows creating, dropping and renaming user accounts."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Allows creating new views."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Allows deleting data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Allows dropping databases and tables."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Allows dropping tables."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Allows executing stored routines."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Allows importing data from and exporting data into files."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Allows inserting and replacing data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Allows locking tables for the current thread."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7716,58 +7777,58 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Has no effect in this MySQL version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Needed for the replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Allows reading data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gives access to the complete list of databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Allows performing SHOW CREATE VIEW queries."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Allows shutting down the server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7778,13 +7839,13 @@ msgstr ""
"killing threads of other users."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Allows changing data."
@@ -7799,196 +7860,196 @@ msgctxt "None privileges"
msgid "None"
msgstr "কোনটিই নয়"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Table-specific privileges"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
"নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege "
"names are expressed in English "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Global privileges"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Global privileges"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resource limits"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Login Information"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Do not change the password"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "No user(s) found."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "The user %s already exists!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন"
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "The password for %s was changed successfully."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s মুছে ফেলা হচ্ছে"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Reloading the privileges"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "The privileges were reloaded successfully."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "সুবিধাসমূহ সম্পাদনা কর"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revoke"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "যেকোন"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "User overview"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "একটি নতুন ইউজার যোগ করুন"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Remove selected users"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল"
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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 uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
"লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy "
"User"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... পুরাতনটা রেখে দাও"
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল"
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7996,46 +8057,46 @@ msgstr ""
" ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড "
"কর"
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "কোনটিই নয়"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
"একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same "
"name and grant all privileges"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Grant all privileges on wildcard name (username_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Check privileges for database "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "ডাটাবেজ-নির্দিষ্ট"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "wildcard"
@@ -9164,7 +9225,7 @@ msgstr "Session value"
msgid "Global value"
msgstr "Global value"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9196,57 +9257,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Modifications have been saved"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "লোকাল"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin documentation"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "ডাটা"
@@ -9475,63 +9548,63 @@ msgstr "The selected users have been deleted successfully."
msgid "Function"
msgstr "ফাংশন"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Because of its length,
this field might not be editable "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "বাইনারী -সম্পাদনা করবেন না"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Insert as new row"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "এবং তারপর"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "পূর্বের পাতায় ফিরে যাও"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "নতুন আরেকটি সাড়ি যোগ করুন"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "এই পাতায় ফিরে যাও"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "পরবর্তী সাড়ি সম্পাদনা করুন"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9692,7 +9765,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Index এ যোগ কর %s column(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
@@ -9718,105 +9791,105 @@ msgstr "%s টেবিল %s তে কপি করা হয়েছে"
msgid "The table name is empty!"
msgstr "টেবিল এর নাম পূরন করা হয়নি"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "টেবিল অর্ডার পরিবর্তন কর"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singly)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Move table to (database.table):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Table options"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "টেবিল রিনেম করুন"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copy table to (database.table):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Switch to copied table"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Table maintenance"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragment table"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Table %s has been flushed"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Flush the table (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "কোন ডাটাবেজ নাই"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Table maintenance"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "চেক"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "টেবিল রিপেয়ার করুন"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Check referential integrity:"
@@ -9824,39 +9897,39 @@ msgstr "Check referential integrity:"
msgid "Show tables"
msgstr "Show tables"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Space usage"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "ব্যাবহার"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effective"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Row Statistics"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Statements"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "ডায়নামিক"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "সাড়ির দৈর্ঘ্য"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " সাড়ির আকার"
@@ -9940,57 +10013,57 @@ msgstr "কোনটিই নয়"
msgid "Column %s has been dropped"
msgstr "Table %s has been dropped"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "একটি প্রাইমারী কী যোগ করা হয়েছে %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "একটি Index যোগ করা হয়েছে %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Show PHP information"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relation view"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Propose table structure"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr " %s ক্ষেত্রসমূহ যোগ কর"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "টেবিলের শেষে"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "টেবিলের শুরুতে"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "After %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Create an index on %s columns"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -10018,109 +10091,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Query type"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Allows inserting and replacing data."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "কোন ডাটাবেজ নাই"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "ডাটা"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Export type"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "পারসিয়ান"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Server version"
diff --git a/po/bs.po b/po/bs.po
index bf2b05e2ec..1d076b7aca 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Prikaži sve"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Pretraživanje"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Pretraživanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Ime ključa"
@@ -117,17 +117,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza %s je odbačena."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar baze:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentari tabele"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "Komentari tabele"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -148,11 +148,11 @@ msgstr "Imena kolona"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -162,8 +162,8 @@ msgstr "Tip"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Podrazumjevano"
@@ -196,39 +196,40 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Da"
@@ -240,8 +241,8 @@ msgstr "Štampaj"
msgid "View dump (schema) of database"
msgstr "Prikaži sadržaj (shemu) baze"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
@@ -268,83 +269,83 @@ msgstr "Tabeli %s promjenjeno ime u %s"
msgid "Database %s has been copied to %s"
msgstr "Tabela %s je kopirana u %s."
-#: db_operations.php:399
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Promjeni ime tabele u "
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Promjeni ime tabele u "
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza %s je odbačena."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Baza ne postoji"
-#: db_operations.php:478
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Baza ne postoji"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo struktura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura i podatci"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podaci"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj AUTO_INCREMENT vrijednost"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr ""
-#: db_operations.php:519
+#: db_operations.php:528
#, fuzzy
msgid "Switch to copied database"
msgstr "Pređi na kopiranu tabelu"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Sortiranje"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -356,7 +357,7 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -366,17 +367,17 @@ msgstr "Relaciona shema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabela"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Redova"
@@ -392,21 +393,21 @@ msgstr "se koristi"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Napravljeno"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Posljednja izmjena"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Posljednja provjera"
@@ -418,101 +419,94 @@ msgid_plural "%s tables"
msgstr[0] "%s tabela"
msgstr[1] "%s tabela"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Vaš SQL upit je uspešno izvršen"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Morate izabrati bar jednu kolonu za prikaz"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sortiranje"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Rastući"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Opadajući"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Prikaži"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterijum"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "i"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "ili"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Promijeni"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Dodaj/obriši polje za kriterij"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Dodaj/obriši kolonu"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Ažuriraj upit"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Koristi tabele"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL upit na bazi %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Izvrši SQL upit"
@@ -554,7 +548,7 @@ msgstr[1] "%s pogodaka unutar tabele %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Pregled"
@@ -564,14 +558,15 @@ msgstr "Pregled"
msgid "Delete the matches for the %s table?"
msgstr "Prikaz podataka tabele"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Obriši"
@@ -615,17 +610,17 @@ msgstr "Unutar tabela:"
msgid "No tables found in database"
msgstr "Tabele nisu pronađene u bazi."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s je ispražnjena"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Polje %s je obrisano"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s je odbačena"
@@ -638,11 +633,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -667,22 +662,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "nijedno"
@@ -691,16 +686,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Za štampu"
@@ -712,28 +707,44 @@ msgstr "Isprazni"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Odbaci"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Provjeri tabelu"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiziraj tabelu"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Popravi tabelu"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analiziraj tabelu"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Rečnik podataka"
@@ -747,10 +758,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Baza podataka"
@@ -758,37 +769,37 @@ msgstr "Baza podataka"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Napravi"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Akcija"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -797,11 +808,11 @@ msgstr ""
msgid "Versions"
msgstr "Operacije"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Samo struktura"
@@ -810,8 +821,8 @@ msgstr "Samo struktura"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Provjeri tabelu"
@@ -872,8 +883,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -931,6 +942,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Vaš SQL upit je uspešno izvršen"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -955,258 +973,272 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
+msgstr ""
+
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "Procesi"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Dozvoljava umetanje i zamjenu podataka."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Nedostaje vrijednost u obrascu!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ovo nije broj!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Ime hosta je prazno!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Ime korisnika nije unijeto!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Lozinka je prazna!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Lozinke nisu identične!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Dodaj novog korisnika"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Verzija servera"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "Globalne privilegije"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Ukloni izabrane korisnike"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Lokalni"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "U redu"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
msgid "Renaming Databases"
msgstr "Promjeni ime tabele u "
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
msgid "Reload Database"
msgstr "Promjeni ime tabele u "
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
msgid "Copying Database"
msgstr "Baza ne postoji"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Karakter set"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Morate izabrati bar jednu kolonu za prikaz"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Napravi novu stranu"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Pretraživanje"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL upit"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL upit"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Sačuvaj"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izaberi polja za prikaz"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Promeni lozinku"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Generirao"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1214,123 +1246,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Baza ne postoji"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "nema"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodna"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Slijedeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "maj"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1338,176 +1375,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1558,34 +1595,34 @@ msgid "No index defined!"
msgstr "Ključ nije definisan!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Ključevi"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Jedinstveni"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalnost"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Komentari"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
@@ -1607,32 +1644,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Baze"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Greška"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1724,8 +1761,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1872,19 +1909,19 @@ msgstr "Tabele"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Podaci"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Ukupno"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Prekoračenje"
@@ -1977,16 +2014,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -2021,7 +2058,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2169,7 +2206,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktura"
@@ -2204,7 +2241,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "direkcija za slanje web servera "
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direkcija koju ste izabrali za slanje nije dostupna"
@@ -2375,7 +2412,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Resetuj"
@@ -2491,7 +2528,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2618,7 +2655,7 @@ msgid "Character set of the file"
msgstr "Karakter set datoteke:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2946,7 +2983,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Server"
@@ -3686,7 +3723,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4153,9 +4190,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Lozinka"
@@ -4175,8 +4212,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Korisničko ime:"
@@ -4292,7 +4329,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4439,7 +4476,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Ime"
@@ -4462,8 +4499,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegije"
@@ -4475,7 +4512,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4494,23 +4531,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Promeni lozinku"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Nema lozinke"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ponovite unos"
@@ -4532,7 +4569,7 @@ msgid "Create"
msgstr "Napravi"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nema privilegija"
@@ -4657,8 +4694,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4678,7 +4715,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "nema"
@@ -4859,7 +4896,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Operacije"
@@ -4900,65 +4937,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Tranformacije čitača"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Promijeni"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Verzija servera"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Veza nije pronađena"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Podatci o prijavi"
@@ -5345,8 +5382,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5463,9 +5500,9 @@ msgstr "Dostupni MIME-tipovi"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5476,7 +5513,7 @@ msgid "Generation Time"
msgstr "Vrijeme kreiranja"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Verzija servera"
@@ -5813,7 +5850,32 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Pet"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Pošalji"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Dodaj novo polje"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Nema izmjena"
@@ -6122,8 +6184,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Ime korisnika"
@@ -6144,7 +6206,7 @@ msgstr "Promjenljiva"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Vrijednost"
@@ -6163,34 +6225,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Bilo koji korisnik"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Koristi tekst polje"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Bilo koji host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokalni"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ovaj server"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Koristi tabelu hosta"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6254,7 +6316,7 @@ msgstr "Atributi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Dodatno"
@@ -6357,12 +6419,12 @@ msgid "Toggle scratchboard"
msgstr "Uključuje/isključuje scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6442,7 +6504,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izvrši SQL upit(e) na bazi %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6476,10 +6538,6 @@ msgstr ""
msgid " Show this query here again "
msgstr "Prikaži ponovo ovaj upit"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Pošalji"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Vidi samo"
@@ -6488,7 +6546,7 @@ msgstr "Vidi samo"
msgid "Location of the text file"
msgstr "Lokacija tekstualne datoteke"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "direkcija za slanje web servera "
@@ -6538,19 +6596,19 @@ msgstr "POČETAK SIROVO"
msgid "END RAW"
msgstr "KRAJ SIROVO"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Navodnik nije zatvoren"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Neispravan identifikator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Nepoznat string interpunkcije"
@@ -6604,7 +6662,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Ključ"
@@ -6653,12 +6711,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primarni"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Tekst ključ"
@@ -6671,7 +6729,7 @@ msgstr ""
"Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6679,12 +6737,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Dodaj novo polje"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6875,82 +6933,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Opšte osobine relacija"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Opšte osobine relacija"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Korisnik"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL set karaktera"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "verzija PHP-a"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Prikaži informacije o PHP-u"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin veb sajt"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributi"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Nema izmjena"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6962,21 +7020,21 @@ msgstr ""
"ovim podešavanjima, otvoren je za hakovanje, i zaista treba da ispravite "
"ovaj sigurnosni rizik."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6984,24 +7042,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7013,21 +7071,21 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7048,13 +7106,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Promijeni redoslijed u tabeli"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Napravi novu stranu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Izaberite bazu"
@@ -7449,78 +7507,78 @@ msgid "Includes all privileges except GRANT."
msgstr "Uključuje sve privilegije osim GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Dozvoljava izmjenu struktura postojećih tabela."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "Dozvoljava kreiranje i brisanje ključeva."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Dozvoljava kreiranje novih baza i tabela."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "Dozvoljava kreiranje novih tabela."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Dozvoljava kreiranje novih tabela."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Dozvoljava kreiranje privremenih tabela.."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "Dozvoljava kreiranje novih tabela."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Dozvoljava brisanje podataka."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Dozvoljava odbacivanje baza i tabela."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Dozvoljava odbacivanje tabela."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7528,32 +7586,32 @@ msgstr ""
"privilegija."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Dozvoljava kreiranje i brisanje ključeva."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Dozvoljava umetanje i zamjenu podataka."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7561,60 +7619,60 @@ msgstr ""
"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da "
"izvrši na sat."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nema efekta u ovoj verziji MySQL-a."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Potrebno zbog pomoćnih servera za replikaciju."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Dozvoljava čitanje podataka."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Daje pristup kompletnoj listi baza."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Dozvoljava gašenje servera."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7625,13 +7683,13 @@ msgstr ""
"promenljivih ili prekidanje procesa ostalih korisnika."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Dozvoljava kreiranje i brisanje ključeva."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Dozvoljava izmenu podataka."
@@ -7646,234 +7704,234 @@ msgctxt "None privileges"
msgid "None"
msgstr "nema"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilegije vezane za tabele"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globalne privilegije"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilegije vezane za bazu"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globalne privilegije"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilegije vezane za bazu"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ograničenja resursa"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Podatci o prijavi"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nemoj da mijenjaš lozinku"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Korisnik nije nađen."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Korisnik %s već postoji!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Dodali ste novog korisnika."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ažurirali ste privilegije za %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Zabranili ste privilegije za %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lozinka za %s je uspješno promjenjena."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Brišem %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Ponovo učitavam privilegije"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Izabrani korisnici su uspješno obrisani."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privilegije su uspešno ponovo učitane."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Promijeni privilegije"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Zabrani"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Bilo koji"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Pregled korisnika"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Omogući"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Dodaj novog korisnika"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Ukloni izabrane korisnike"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Odbaci baze koje se zovu isto kao korisnici."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Izabrani korisnik nije pronađen u tabeli privilegija."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilegije vezane za kolone"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Dodaj privilegije na slijedećoj bazi"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na slijedećoj tabeli"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Promeni informacije o prijavi / Kopiraj korisnika"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Napravi novog korisnika sa istim privilegijama i ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... sačuvaj stare."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... obriši stare iz tabela korisnika."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "nema"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Provjeri privilegije za bazu "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globalno"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Specifično za bazu"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "Džoker"
@@ -8894,7 +8952,7 @@ msgstr "Vrijednost sesije"
msgid "Global value"
msgstr "Globalna vrednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8926,57 +8984,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Izmjene su sačuvane"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokalni"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentacija"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9203,63 +9273,63 @@ msgstr "Izabrani korisnici su uspješno obrisani."
msgid "Function"
msgstr "Funkcija"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binarni - ne mijenjaj"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Unesi kao novi red"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Nazad na prethodnu stranu"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Dodaj još jedan novi red"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
#, fuzzy
msgid "Go back to this page"
msgstr "Nazad na prethodnu stranu"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9415,7 +9485,7 @@ msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)"
msgid "Add to index %s column(s)"
msgstr "Dodaj u ključ %s kolona(e)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9441,105 +9511,105 @@ msgstr "Tabela %s je kopirana u %s."
msgid "The table name is empty!"
msgstr "Ima tabele je prazno!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Promijeni redoslijed u tabeli"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(po jednom polju)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Pomjeri tabelu u (baza.tabela):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcije tabele"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Promjeni ime tabele u "
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopiraj tabelu u (baza.tabela):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Pređi na kopiranu tabelu"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Radnje na tabeli"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabela %s je osvežena"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Osvježi tabelu (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Prikaz podataka tabele"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Baza ne postoji"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Radnje na tabeli"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Češki"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Popravi tabelu"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Proveri referencijalni integritet:"
@@ -9547,39 +9617,39 @@ msgstr "Proveri referencijalni integritet:"
msgid "Show tables"
msgstr "Prikaži tabele"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Zauzeće"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Zauzeće"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektivne"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistike reda"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Ime"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamički"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Dužina reda"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Veličina reda"
@@ -9665,56 +9735,56 @@ msgstr "nema"
msgid "Column %s has been dropped"
msgstr "Tabela %s je odbačena"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Osnovni ključ je upravo dodan %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Ključ je upravo dodan %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Prikaži informacije o PHP-u"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relacioni pogled"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Predloži strukturu tabele"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "Dodaj novo polje"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Na kraju tabele"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Na početku tabele"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Poslije %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Napravi ključ na %s kolona"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9742,109 +9812,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Vrsta upita"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Dozvoljava umetanje i zamjenu podataka."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Baza ne postoji"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Podaci"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "verzija PHP-a"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Verzija servera"
diff --git a/po/ca.po b/po/ca.po
index 3ab0eaa9b3..07bbf81a41 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro \n"
"Language-Team: catalan \n"
-"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Mostra tot"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Cerca"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Cerca"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executa"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nom de clau"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "S'ha creat la base de dades %1$s."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentaris de la base de dades: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Comentaris de la taula"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Comentaris de la taula"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Columna"
@@ -149,11 +149,11 @@ msgstr "Columna"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipus"
@@ -163,8 +163,8 @@ msgstr "Tipus"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nul"
@@ -174,7 +174,7 @@ msgstr "Nul"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Defecte"
@@ -197,39 +197,40 @@ msgstr "Enllaços a"
msgid "Comments"
msgstr "Comentaris"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Si"
@@ -241,8 +242,8 @@ msgstr "Imprimeix"
msgid "View dump (schema) of database"
msgstr "Veure el bolcat (esquema) de la base de dades"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Base de dades sense taules."
@@ -268,78 +269,78 @@ msgstr "Base de dades %s reanomenada a %s"
msgid "Database %s has been copied to %s"
msgstr "La base de dades %s s'ha copiat a %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Reanomena base de dades a"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Ordre"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Elimina la base de dades"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "La base de dades %s s'ha eliminat."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Esborra la base de dades (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Còpia base de dades a"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Només l'estructura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estructura i dades"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Només dades"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Inclou CREATE DATABASE abans de copiar"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Afegeix %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Afegeix valor AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Afegeix restriccions"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Canvia a la base de dades copiada"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Ordenació"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"S'ha desactivat l' emmagatzemament de la configuració de phpMyAdmin. Per "
"veure el motiu, clica %saqui%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edita o exporta l'esquema relacional"
@@ -356,17 +357,17 @@ msgstr "Edita o exporta l'esquema relacional"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Taula"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Fila"
@@ -382,21 +383,21 @@ msgstr "en ús"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Creació"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Darrera actualització"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Darrera comprovació"
@@ -407,97 +408,90 @@ msgid_plural "%s tables"
msgstr[0] "%s taula"
msgstr[1] "%s taules"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "La vostra comanda SQL ha estat executada amb èxit"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Has de triar al menys una columna per mostrar"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Canvia a"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "constructor visual"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Classificació"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascendent"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descendent"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostra"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criteris"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "I"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Sup"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "O"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modificar"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Afegeix/esborra criteris de files"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Afegeix/esborra columnes"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Actualitza consulta"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Usa Taules"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Consulta SQL a la base de dades %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Executa consulta"
@@ -538,7 +532,7 @@ msgstr[1] "%s resultats a la taula %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Navega"
@@ -547,14 +541,15 @@ msgstr "Navega"
msgid "Delete the matches for the %s table?"
msgstr "Esborrar les coincidències per a la taula %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Esborra"
@@ -593,17 +588,17 @@ msgstr "Dins la columna:"
msgid "No tables found in database"
msgstr "Base de dades sense taules"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "S'ha buidat la taula %s"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Vista %s esborrada"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "S'ha esborrat la taula %s"
@@ -616,11 +611,11 @@ msgstr "El seguiment està actiu."
msgid "Tracking is not active."
msgstr "El seguiment no està actiu."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@@ -645,22 +640,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Amb marca:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Marcar-ho tot"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desmarcar tot"
@@ -669,16 +664,16 @@ msgid "Check tables having overhead"
msgstr "Comprova taules desfragmentades"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporta"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Imprimeix vista"
@@ -690,28 +685,46 @@ msgstr "Buida"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Verifica la taula"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimitza la taula"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Repara la taula"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analitza la taula"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Vés a la taula"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Canviar les dades de la taula per l'arxiu "
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Canviar les dades de la taula per l'arxiu "
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Diccionari de Dades"
@@ -725,10 +738,10 @@ msgstr "Taules seguides"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Base de dades"
@@ -736,36 +749,36 @@ msgstr "Base de dades"
msgid "Last version"
msgstr "Darrera versió"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Creat"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Actualitzat"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Estat"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Acció"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Esborra les dades de seguiment per aquesta taula"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "actiu"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "no actiu"
@@ -773,11 +786,11 @@ msgstr "no actiu"
msgid "Versions"
msgstr "Versions"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Informe de seguiment"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Instantània de l'estructura"
@@ -785,8 +798,8 @@ msgstr "Instantània de l'estructura"
msgid "Untracked tables"
msgstr "Taules no seguides"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Segueix taula"
@@ -845,11 +858,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
-"%sdocumentació%s per trobar formes de modificar aquest límit."
+"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
+"sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -917,6 +930,13 @@ msgstr ""
"indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que "
"incrementeu els límits de temps de php."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "La vostra comanda SQL ha estat executada amb èxit"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -942,225 +962,243 @@ msgstr "Clica per deseleccionar"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Instrucció \"DROP DATABASE\" desactivada."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Realment vols fer?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Ets a punt de DESTRUIR completament una base de dades!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Ets a punt de DESTRUIR completament una base de dades!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Ets a punt de DESTRUIR completament una base de dades!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Event d'esborrat"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Procediment d'esborrat"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Esborra les dades de seguiment"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Elimina la clau principal o l'index"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Aquesta operació pot ser bastant llarga. Procedim igualment?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Estàs a punt de DESACTIVAR un repositori BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Estàs segur de voler desactivar totes les referències BLOB per a la base de "
"dades %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Falta un valor al formulari!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Aquest valor no és un número!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "El nom del servidor és buit!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "El nom d'usuari és buit!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "La contrasenya és buida!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Les contrasenyes no coincideixen!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Afegeix un usuari nou"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Crea un usuari"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Recarrega els permisos"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Treu els usuaris triats"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Tanca"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Cancel.lar"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Carregar"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Petició de procés"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Error a la petició de procés"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Eliminació de columna"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Afegir clau principal"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Correcte"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Reanomenar bases de dades"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Recarregar base de dades"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Copiant base de dades"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Canvi de Joc de Caràcters"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "La taula ha de tenir al menys una columna"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Crea una taula"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Cercar"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Amagar quadre de consultes"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Mostrar quadre de consultes"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Edició en linia"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Desa"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Amaga"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Amaga el criteri de cerca"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Mostrar criteri de cerca"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Tria la clau referenciada"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Tria una clau externa"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Tria la clau principal o una clau única"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Tria la columna a mostrar"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Afegeix una opció per a la columna"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Genera una contrasenya"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Canvi de contrasenya"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Més"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1170,254 +1208,260 @@ msgstr ""
"actualitzar-la. La nova versió és la %s, alliberada el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", darrera versió estable:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Vés a la base de dades"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Fet"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Següent"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Avui"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Gener"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Febrer"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Març"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Abril"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Maig"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Juny"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Juliol"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Agost"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Setembre"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Octubre"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Novembre"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Desembre"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Des"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Diumenge"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Dilluns"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Dimarts"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Dimecres"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Dijous"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Divendres"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Dissabte"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Dis"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Dg"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Dl"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Dm"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Dc"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Dj"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Dv"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Ds"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Se"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Segon"
@@ -1471,33 +1515,33 @@ msgid "No index defined!"
msgstr "No s'ha definit l'índex!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indexos"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Única"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Comprimit"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinalitat"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Comentari"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
@@ -1521,32 +1565,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Bases de dades"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Error"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d fila afectada."
msgstr[1] "%1$d files afectades."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d fila esborrada."
msgstr[1] "%1$d files esborrades."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1640,8 +1684,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
@@ -1792,19 +1836,19 @@ msgstr "Taules"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dades"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Defragmentat"
@@ -1896,16 +1940,16 @@ msgstr ""
"Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Servidor"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Mètode d'identificació incorrecte establert a la configuració:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Es necessari actualitzar a %s %s o posterior."
@@ -1940,7 +1984,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentació"
@@ -2088,7 +2132,7 @@ msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Estructura"
@@ -2123,7 +2167,7 @@ msgstr ""
"Selecciona des del directori de pujada d'arxius del servidor web %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "No està disponible el directori indicat per pujar arxius"
@@ -2281,7 +2325,7 @@ msgstr "Permet als usuaris configurar aquest valor"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Reinicia"
@@ -2410,7 +2454,7 @@ msgid "Compress on the fly"
msgstr "Compressió al vol"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Arxiu de configuració"
@@ -2539,7 +2583,7 @@ msgid "Character set of the file"
msgstr "Joc de caràcters de l'arxiu"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2842,7 +2886,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Configura l'aspecte del marc de navegació"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servidors"
@@ -3621,7 +3665,7 @@ msgstr "Arxiu de configuració SweKey"
msgid "Authentication method to use"
msgstr "Mètode d'autenticació a usar"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Tipus d'autenticació"
@@ -4144,9 +4188,9 @@ msgstr "Necessita activar el SQL Validator"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Contrasenya"
@@ -4170,8 +4214,8 @@ msgstr ""
"Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/"
"kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Nom d'usuari"
@@ -4298,7 +4342,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Mostra les instruccions multiples"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Comprova la darrera versió"
@@ -4449,7 +4493,7 @@ msgstr "Esdeveniments"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nom"
@@ -4472,8 +4516,8 @@ msgid "Designer"
msgstr "Dissenyador"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Permisos"
@@ -4485,7 +4529,7 @@ msgstr "Rutines"
msgid "Return type"
msgstr "Tipus de retorn"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4508,23 +4552,23 @@ msgstr "El servidor no respon"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detalls..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Canvi de contrasenya"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Sense contrasenya"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Reescriu"
@@ -4546,7 +4590,7 @@ msgid "Create"
msgstr "Crea"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Sense permisos"
@@ -4651,12 +4695,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
-"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
-"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
+"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
+"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:275
@@ -4674,7 +4718,7 @@ msgstr "Compressió:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Res"
@@ -4851,7 +4895,7 @@ msgstr "Classifica per la clau"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opcions"
@@ -4884,62 +4928,62 @@ msgstr "Mostra contingut BLOB"
msgid "Browser transformation"
msgstr "Transformació del navegador"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Còpia"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "S'ha esborrat la fila"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Finalitzar"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "en consulta"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Mostrant registres"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tarda %01.4f seg"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Canvi"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operacions de resultats de consultes"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Vista d'impresió (amb texts sencers)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Mostra el gràfic"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Crea una vista"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "No s'ha trobat l'enllaç "
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informació de versió"
@@ -5389,8 +5433,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
"principal de %sPrimeBase XT%s."
@@ -5489,9 +5533,9 @@ msgstr "Mostra tipus MIME"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Servidor"
@@ -5502,7 +5546,7 @@ msgid "Generation Time"
msgstr "Temps de generació"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versió del servidor"
@@ -5863,7 +5907,32 @@ msgstr "Cap"
msgid "Convert to Kana"
msgstr "Converteix a Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Dv"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Envia"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Afegir índex"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Sense canvis"
@@ -6173,8 +6242,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nom d'usuari"
@@ -6195,7 +6264,7 @@ msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valor"
@@ -6215,34 +6284,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Afegeix l'usuari esclau de replicació"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Qualsevol usuari"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Usa camp de text"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Qualsevol servidor"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Aquest Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Utilitza la Taula de Hosts"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6306,7 +6375,7 @@ msgstr "Atributs"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6399,12 +6468,12 @@ msgid "Toggle scratchboard"
msgstr "Canvia l' scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Idioma desconegut: %1$s."
@@ -6477,7 +6546,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Executa consulta/s SQL a la Base de Dades %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Neteja"
@@ -6509,10 +6578,6 @@ msgstr "Separador"
msgid " Show this query here again "
msgstr " Mostra aquesta consulta de nou "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Envia"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Només mirar"
@@ -6521,7 +6586,7 @@ msgstr "Només mirar"
msgid "Location of the text file"
msgstr "Ubicació de l'arxiu de text"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "directori de pujada d'arxius del servidor web"
@@ -6572,19 +6637,19 @@ msgstr "INICI DEL BOLCAT"
msgid "END RAW"
msgstr "FI DEL BOLCAT"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Afegit automàticament accent al final de la consulta!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Cometa no tancada"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identificador Incorrecte"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Signe de puntuació desconegut"
@@ -6595,8 +6660,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
-"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
-"%sdocumentació%s."
+"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
+"sdocumentació%s."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6633,7 +6698,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Índex"
@@ -6680,12 +6745,12 @@ msgid "As defined:"
msgstr "Com definit:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Principal"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Text sencer"
@@ -6699,7 +6764,7 @@ msgstr ""
"a l'autor qué fa %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Motor d'emmagatzematge"
@@ -6707,12 +6772,12 @@ msgstr "Motor d'emmagatzematge"
msgid "PARTITION definition"
msgstr "Definició de PARTICIÓ"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Afegeix %s columna(es)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Has d'afegir al menys una columna."
@@ -6894,73 +6959,73 @@ msgstr "No s'han trobat arxius dins de l'arxiu ZIP!"
msgid "Error in ZIP archive:"
msgstr "Error en arxiu ZIP:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Paràmetres Generals"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Ordenació de la connexió MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Paràmetres d'aparença"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Més paràmetres"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Versió del protocol"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Usuari"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Joc de caràcters de MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Servidor web"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Versió del client MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Extensió PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Mostra informació de PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Pàgina oficial del phpMyAdmin"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Contribueix"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Obtenir suport"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Llista de canvis"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6973,7 +7038,7 @@ msgstr ""
"i s'exposa a intrusions, pel que recomanem la reparació urgent d'aquest "
"forat de seguretat."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6983,7 +7048,7 @@ msgstr ""
"PHP. Aquesta opció és incompatible amb phpMyAdmin i pot provocar la perdua "
"de dades!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6993,7 +7058,7 @@ msgstr ""
"de caràcters multibyte. Sense l'extensió -mbstring-, phpMyAdmin és incapaç "
"de dividir cadenes de text correctament i pot generar resultats inesperats."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7005,7 +7070,7 @@ msgstr ""
"caducitat de galetes -cookies- configurat a phpMyAdmin, degut a aixó, la "
"vostra conenexió caducarà abans del establert a phpMyAdmin."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7014,13 +7079,13 @@ msgstr ""
"configuració a phpMyAdmin, degut a aixó, la teva sessió caducarà més aviat "
"que el que indica la configuració de phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"L'arxiu de configuració necessita ara una frase de pas secreta "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7030,7 +7095,7 @@ msgstr ""
"encara existeix dins del vostre directori de phpMyAdmin. Heu d'esborrar-ho "
"un cop heu acabat de configurar phpMyAdmin."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7040,7 +7105,7 @@ msgstr ""
"completa, s'han desactivat algunes característiques avançades. Per saber "
"perquè, clica %saquí%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7050,7 +7115,7 @@ msgstr ""
"algunes funcions de phpMyAdmin poden estar desactivades. Per exemple, el "
"marc de navegació no s'actualitzarà automàticament."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7059,7 +7124,7 @@ msgstr ""
"La teva llibreria MySQL de PHP MySQL versió %s és diferent del teu servidor "
"MySQL versió %s. Aixó pot provocar comportaments inesperats."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7080,12 +7145,12 @@ msgstr "Filtre"
msgid "filter tables by name"
msgstr "filtra les taules pel nom"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Crea una taula"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Tria una base de dades"
@@ -7451,75 +7516,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Inclou tots els permisos excepte GRANT -atorgar-."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permet alterar l'estructura de taules existents."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Permet alterar i esborrar rutines enmagatzemades."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permet crear noves bases de dades i taules."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Permet crear rutines enmgatzemades."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permet crear noves taules."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permet crear taules temporals."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Permet crear, esborrar i reanomenar comptes d'usuari."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Permet crear noves vistes."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permet esborrar dades."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permet eliminar bases de dades i taules."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permet eliminar taules."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Permet establir events per al planificador d'events"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Permet executar rutines enmagatzemades."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Permet importar i exportar dades amb arxius externs."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7527,33 +7592,33 @@ msgstr ""
"permisos."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permet crear i eliminar indexs."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permet inserir i modificar dades."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Permet bloquejar taules per l'actual fil d'execució."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7561,61 +7626,61 @@ msgstr ""
"Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula "
"o base de dades per hora."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Permet veure processos de tots els usuaris"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "No té efecte en aquesta versió de MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Es necessari per a la replicació en servidors esclaus."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permet llegir dades."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Dona accés a la llista completa de bases de dades."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Permet fer consultes de tipus SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permet parar el servidor."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7626,12 +7691,12 @@ msgstr ""
"variables globals o bé cancel.lar fils d'execució d'altres usuaris."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Permet crear i eliminar disparadors -triggers-"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permet canviar dades."
@@ -7644,190 +7709,190 @@ msgctxt "None privileges"
msgid "None"
msgstr "Cap"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Permisos especifics de taula"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
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:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Permisos generals"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Permisos específics de base de dades"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administració"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Permisos generals"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Permisos específics de base de dades"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limit de recursos"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Informació d'Identificació"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "No canviïs la contrasenya"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "No s'han trobat usuaris."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "L'usuari %s ja existeix!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Has afegit un usuari nou."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Heu actualitzat els permisos de %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Has tret els permisos per %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "La contrasenya per %s s'ha canviat correctament."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Esborrant %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "No s'han triat usuaris per esborrar!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Recarregant permisos"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "S'han esborrat correctament els usuaris triats."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Els permisos s'han recarregat correctament."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Edita permisos"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Treu"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Qualsevol"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Informació general de l'usuari"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Atorga"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Afegeix un usuari nou"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Treu els usuaris triats"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Permisos específics de columna"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Afegeix permisos a la següent base de dades"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Afegeix permisos a la següent taula"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Canvi d'Informació de Connexió / Copia d'Usuari"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Crea un nou usuari amb els mateixos permisos i ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... respecta l'antic."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... esborra l'antic de les taules d'usuaris."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7835,42 +7900,42 @@ msgstr ""
" ... esborra l'antic de les taules d'usuaris i recarrega els permisos "
"després."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Base de dades per usuari"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Cap"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Atorga tots els permisos a la base de dades "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Usuaris amb accés a "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "específic de la base de dades"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "comodins"
@@ -9028,7 +9093,7 @@ msgstr "Valor de sessió"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Descarrega"
@@ -9069,55 +9134,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Connexió insegura"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Infraestructura de taules enllaçades"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Vista global"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Mostra missatges ocults (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "No hi ha servidors configurats"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nou servidor"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Idioma predeterminat"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "deixa triar a l'usuari"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- cap -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Servidor predeterminat"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Fi de linia"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Mostra"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Carregar"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "pàgina principal de phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Donacions"
@@ -9267,8 +9344,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
-"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
+"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
+"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:266
@@ -9296,8 +9373,8 @@ msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
-"phpMyAdmin pot accedir al teu panel directament. Estableix el "
-"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
+"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format
@@ -9382,63 +9459,63 @@ msgstr "S'ha modificat la taula %1$s correctament"
msgid "Function"
msgstr "Funció"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
" A causa de la seva longitud,
aquesta columna no pot ser editable "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Treure Referència a Repositori BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binari - no editeu "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Puja al repositori BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Insereix com a nova fila"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Insereix com a nova fila i ignora els errors"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Mostra la consulta d'inserció"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "i llavors"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Torna"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Insereix un nou registre"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Torna a aquesta pàgina"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Edita el següent registre"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't "
"on vulguis"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Continua l'inserció amb %s files"
@@ -9597,7 +9674,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Afegeix a l'índex %s columna(es) "
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "El comptador de columnes ha de ser més gran que zero."
@@ -9623,97 +9700,97 @@ msgstr "La taula %s s'ha copiat a %s."
msgid "The table name is empty!"
msgstr "El nom de la taula és buit!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Altera la taula i ordena per"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(només)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Mou la taula a (base-de-dades.taula):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcions de taula"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Reanomena les taules a"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Còpia taula a (base-de-dades.taula):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Canvia a una taula copiada"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Manteniment de la taula"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Desfragmenta la taula"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "S'ha buidat la memòria cau de la taula %s"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Buida la memòria cau de la taula (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Esborra les dades o la taula"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Buida la taula (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Esborra la taula (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Manteniment de particions"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partició %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analitza"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Comprova"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimitza"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Reconstrueix"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Repara"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Elimina particionament"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Comprova la integritat referencial:"
@@ -9721,39 +9798,39 @@ msgstr "Comprova la integritat referencial:"
msgid "Show tables"
msgstr "Mostra taules"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Utilització d'espai"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Ús"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efectiu"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Estadística de files"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Sentències"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "estàtic"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinàmic"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Tamany de fila"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Mida de fila "
@@ -9833,52 +9910,52 @@ msgstr "Cap"
msgid "Column %s has been dropped"
msgstr "S'ha esborrat la columna %s"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "S'ha afegit una clau principal a %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "S'ha afegit un índex a %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Mostra més accions"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Vista de relacions"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Proposa una estructura de taula"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Afegeix columna(es)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Al final de la taula"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Al principi de la taula"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Darrere de %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Crea un índex de %s columnes"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "particionat"
@@ -9906,7 +9983,7 @@ msgstr "Activat el seguiment per %s.%s , versió %s."
msgid "SQL statements executed."
msgstr "Declaracions SQL executades."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9914,101 +9991,131 @@ msgstr ""
"Pots executar el bolcat mitjançant la creació i utilització d'una base de "
"dades temporal. Si us plau, assegura't que tens els permisos per fer-ho."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Comenta aquestes dues línies si no les necessites."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Instantània de la versió %s (codi SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Segueix aquestes declaracions de definició de dades:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Recopila errors"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Segueix aquestes declaracions de manipulació de dades:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Seguiment de declaracions"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Mostra %s amb dates des de %s fins a %s per l'usuari %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Esborra les dades de seguiment per aquesta taula"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "No hi ha bases de dades"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Declaració de definició de dades"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Declaració de manipulació de dades"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Bolcat SQL (descàrrega d'arxiu)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Bolcat SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Aquesta opció substituirà la taula i les dades contingudes."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Execució SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exporta com %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Mostra versions"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versió"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Desactiva el seguiment per %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Desactiva ara"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Activa el seguiment per %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Activa ara"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Crea versió %s de %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Segueix aquestes declaracions de definició de dades:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Segueix aquestes declaracions de manipulació de dades:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Crea versió"
diff --git a/po/cs.po b/po/cs.po
index f6f761bbd8..085fb2135a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,21 +4,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
-"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Zobrazit vše"
@@ -48,9 +48,9 @@ msgstr ""
msgid "Search"
msgstr "Vyhledávání"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -66,22 +66,22 @@ msgstr "Vyhledávání"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Proveď"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Název klíče"
@@ -122,17 +122,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Byla vytvořena databáze %1$s."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentář k databázi: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentář k tabulce"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -140,7 +140,7 @@ msgstr "Komentář k tabulce"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Pole"
@@ -151,11 +151,11 @@ msgstr "Pole"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -165,8 +165,8 @@ msgstr "Typ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulový"
@@ -176,7 +176,7 @@ msgstr "Nulový"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Výchozí"
@@ -199,39 +199,40 @@ msgstr "Odkazuje na"
msgid "Comments"
msgstr "Komentáře"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ano"
@@ -243,8 +244,8 @@ msgstr "Vytisknout"
msgid "View dump (schema) of database"
msgstr "Export databáze"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "V databázi nebyla nalezena žádná tabulka."
@@ -270,78 +271,78 @@ msgstr "Databáze %s byla přejmenována na %s"
msgid "Database %s has been copied to %s"
msgstr "Databáze %s byla zkopírována na %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Přejmenovat databázi na"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Příkaz"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Odstranit databázi"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databáze %s byla zrušena."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Odstranit databázi (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Zkopírovat databázi na"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Pouze strukturu"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strukturu a data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Jen data"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Přidat %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Přidat hodnotu AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Přidat integritní omezení"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Přepnout na zkopírovanou databázi"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Porovnávání"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -350,7 +351,7 @@ msgstr ""
"Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte "
"proč."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Upravit nebo exportovat relační schéma"
@@ -358,17 +359,17 @@ msgstr "Upravit nebo exportovat relační schéma"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabulka"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Řádků"
@@ -384,21 +385,21 @@ msgstr "právě se používá"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Vytvořeno"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Poslední změna"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Poslední kontrola"
@@ -410,97 +411,90 @@ msgstr[0] "%s tabulka"
msgstr[1] "%s tabulky"
msgstr[2] "%s tabulek"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Váš SQL-dotaz byl úspěšně vykonán"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Musíte zvolit alespoň jedno pole, které chcete zobrazit"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Přepnout na"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "vizuálního návrháře"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Řadit"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Vzestupně"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Sestupně"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Zobrazit"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Podmínka"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "přidat"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "a"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "smazat"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "nebo"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Úpravy"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Přidat nebo odebrat řádek"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Přidat nebo odebrat pole"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Aktualizovat dotaz"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Použít tabulky"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL dotaz na databázi %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Provést dotaz"
@@ -542,7 +536,7 @@ msgstr[2] "%s odpovídajících záznamů v tabulce %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Projít"
@@ -551,14 +545,15 @@ msgstr "Projít"
msgid "Delete the matches for the %s table?"
msgstr "Odstranit nalezené záznamy z tabulky %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Odstranit"
@@ -598,17 +593,17 @@ msgstr "Uvnitř pole:"
msgid "No tables found in database"
msgstr "V databázi nebyly nalezeny žádné tabulky"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabulka %s byla vyprázdněna"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Pohled %s byl odstraněn"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabulka %s byla odstraněna"
@@ -621,11 +616,11 @@ msgstr "Sledování je zapnuté."
msgid "Tracking is not active."
msgstr "Sledování není zapnuté."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -650,22 +645,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Zaškrtnuté:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Zaškrtnout vše"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Odškrtnout vše"
@@ -674,16 +669,16 @@ msgid "Check tables having overhead"
msgstr "Zaškrtnout neoptimální"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Náhled pro tisk"
@@ -695,28 +690,46 @@ msgstr "Vyprázdnit"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Odstranit"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Zkontrolovat tabulku"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimalizovat tabulku"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Opravit tabulku"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyzovat tabulku"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Přejít na tabulku"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Přepsat data tabulky souborem"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Přepsat data tabulky souborem"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datový slovník"
@@ -730,10 +743,10 @@ msgstr "Sledované tabulky"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Databáze"
@@ -741,36 +754,36 @@ msgstr "Databáze"
msgid "Last version"
msgstr "Poslední verze"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Vytvořeno"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Aktualizováno"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Stav"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Operace"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Odstranit všechny informace o sledování této tabulky"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "zapnuté"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "není zapnuté"
@@ -778,11 +791,11 @@ msgstr "není zapnuté"
msgid "Versions"
msgstr "Verze"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Informace o sledování"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Snímek struktury"
@@ -790,8 +803,8 @@ msgstr "Snímek struktury"
msgid "Untracked tables"
msgstr "Nesledované tabulky"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Sledovat tabulku"
@@ -850,8 +863,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
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."
@@ -922,6 +935,13 @@ msgstr ""
"znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte "
"časové limity v PHP."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Váš SQL-dotaz byl úspěšně vykonán"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -946,223 +966,241 @@ msgstr "Klikněte pro zrušení výběru"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Příkaz „DROP DATABASE“ je vypnutý."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Opravdu si přejete vykonat příkaz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte se ZRUŠIT celou databázi!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Chystáte se ZRUŠIT celou databázi!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Chystáte se ZRUŠIT celou databázi!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Odstraňuji událost"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Odstraňuji proceduru"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Odstraňuji sledovací data"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Odstraňuji (primární) klíč"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Tato operace může trvat velmi dlouho. Chcete je přesto provést?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Chystáte se vypnout skladiště BLOBů!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Chcete vypnout všechny odkazy do skladiště BLOBů v databázi %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Chybějící hodnota ve formuláři!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Nebylo zadáno číslo!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Jméno počítače je prázdné!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Jméno uživatele je prázdné!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Heslo je prázdné!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Hesla nejsou stejná!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Přidat nového uživatele"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Vytvořit uživatele"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Načítám oprávnění"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Odstraňuji vybrané uživatele"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Ukončit"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Zrušit"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Nahrávám"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Probíhá zpracování požadavku"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Chyba při zpracování požadavku"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Odstraňuji sloupec"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Přidávám primární klíč"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Přejmenovávám databáze"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Znovu načítám databázi"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Kopíruji databázi"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Měním znakovou sadu"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tabulka musí mít alespoň jedno pole"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Vytvořit tabulku"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Vyhledávám"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Skrýt pole pro dotaz"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Zobrazit pole pro dotaz"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Upravit zde"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Uložit"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skrýt"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Skrýt parametry vyhledávání"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Zobrazit parametry vyhledávání"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorovat"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Zvolte odkazovaný klíč"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Zvolte cizí klíč"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Zvolte, prosím, primární nebo unikátní klíč"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Zvolte která pole zobrazit"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Přidat paramer pro sloupec "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Vytvořit heslo"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Vytvořit"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Změnit heslo"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Více"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1172,254 +1210,260 @@ msgstr ""
"je %s a byla vydána %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", poslední stabilní verze:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Přejít na databázi"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Hotovo"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Předchozí"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Další"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Dnešek"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "leden"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "únor"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "březen"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "duben"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "květen"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "červen"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "červenec"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "srpen"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "září"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "říjen"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "listopad"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "prosinec"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "led"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "úno"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "bře"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "dub"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "kvě"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "čen"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "čec"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "srp"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "zář"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "říj"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "lis"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "pro"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Neděle"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Pondělí"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Úterý"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Středa"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Čtvrtek"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Pátek"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Úte"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Stř"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Čtv"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pát"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Čt"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Pá"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Týd"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuty"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekundy"
@@ -1473,33 +1517,33 @@ msgid "No index defined!"
msgstr "Není definován žádný index!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indexy"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikátní"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Zabaleno"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Mohutnost"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Komentář"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upravit"
@@ -1523,18 +1567,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databáze"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Chyba"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -1542,7 +1586,7 @@ msgstr[0] "Ovlivněn %1$d řádek."
msgstr[1] "Ovlivněny %1$d řádky."
msgstr[2] "Ovlivněno %1$d řádek."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -1550,7 +1594,7 @@ msgstr[0] "Smazán %1$d řádek."
msgstr[1] "Smazány %1$d řádky."
msgstr[2] "Smazáno %1$d řádek."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1643,8 +1687,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -1794,19 +1838,19 @@ msgstr "Tabulky"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Celkem"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Navíc"
@@ -1895,16 +1939,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "V konfiguraci máte špatnou přihlašovací metodu:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
@@ -1939,7 +1983,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentace"
@@ -2087,7 +2131,7 @@ msgstr "Funkčnost %s je omezena známou chybou, viz %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktura"
@@ -2121,7 +2165,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Zvolte soubor z adresáře pro upload na serveru %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Adresář určený pro upload souborů nemohl být otevřen"
@@ -2279,7 +2323,7 @@ msgstr "Povolit uživatelům změnit tuto hodnotu"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Původní"
@@ -2408,7 +2452,7 @@ msgid "Compress on the fly"
msgstr "Komprimovat za letu"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfigurační soubor"
@@ -2537,7 +2581,7 @@ msgid "Character set of the file"
msgstr "Znaková sada souboru"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formát"
@@ -2839,7 +2883,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Přizpůsobí vzhled navigačního rámu"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servery"
@@ -3603,7 +3647,7 @@ msgstr "Konfigurační soubor SweKey"
msgid "Authentication method to use"
msgstr "Která přihlašovací metoda se má použít"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Typ přihlašování"
@@ -4114,9 +4158,9 @@ msgstr "Vyžaduje povolené kontrolování SQL"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Heslo"
@@ -4139,8 +4183,8 @@ msgstr ""
"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Uživatel"
@@ -4267,7 +4311,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Podrobné víceprvkové dotazy"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Zkontrolovat nejnovější verzi"
@@ -4417,7 +4461,7 @@ msgstr "Události"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Název"
@@ -4440,8 +4484,8 @@ msgid "Designer"
msgstr "Návrhář"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Oprávnění"
@@ -4453,7 +4497,7 @@ msgstr "Rutiny"
msgid "Return type"
msgstr "Návratový typ"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4475,23 +4519,23 @@ msgstr "Server neodpovídá"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(nebo není správně nastaven lokální socket MySQL serveru)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Podrobnosti..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Změnit heslo"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Žádné heslo"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Heslo znovu"
@@ -4513,7 +4557,7 @@ msgid "Create"
msgstr "Vytvořit"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nemáte oprávnění"
@@ -4618,8 +4662,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -4641,7 +4685,7 @@ msgstr "Komprese:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Žádná"
@@ -4818,7 +4862,7 @@ msgstr "Seřadit podle klíče"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Nastavení"
@@ -4851,62 +4895,62 @@ msgstr "Zobrazit obsah BLOBu"
msgid "Browser transformation"
msgstr "Transformace při prohlížení"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopírovat"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Řádek byl smazán"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Ukončit"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "v dotazu"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Zobrazeny záznamy"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "celkem"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "dotaz trval %01.4f sekund"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Změnit"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operace s výsledky dotazu"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Náhled pro tisk (s kompletními texty)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Zobrazit graf"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Vytvořit pohled"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Odkaz nenalezen"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informace o verzi"
@@ -5345,8 +5389,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
"XT%s."
@@ -5445,9 +5489,9 @@ msgstr "Zobrazit MIME typy"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Počítač"
@@ -5458,7 +5502,7 @@ msgid "Generation Time"
msgstr "Vygenerováno"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Verze MySQL"
@@ -5812,7 +5856,32 @@ msgstr "Žádná"
msgid "Convert to Kana"
msgstr "Převést na Kanu"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Pá"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Provést"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Přidat index"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Žádná změna"
@@ -6123,8 +6192,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Jméno uživatele"
@@ -6145,7 +6214,7 @@ msgstr "Proměnná"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Hodnota"
@@ -6165,34 +6234,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Přidat replikačního uživatele pro podřízený server"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Jakýkoliv uživatel"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Použít textové pole"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Jakýkoliv počítač"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokální"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Tento počítač"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Použít tabulku Host"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6256,7 +6325,7 @@ msgstr "Vlastnosti"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6349,12 +6418,12 @@ msgid "Toggle scratchboard"
msgstr "Zobrazit grafický návrh"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznámý jazyk: %1$s."
@@ -6427,7 +6496,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Spustit SQL dotaz(y) na databázi %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Vyčistit"
@@ -6459,10 +6528,6 @@ msgstr "Oddělovač"
msgid " Show this query here again "
msgstr " Zobrazit zde tento dotaz znovu "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Provést"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Zobrazit"
@@ -6471,7 +6536,7 @@ msgstr "Zobrazit"
msgid "Location of the text file"
msgstr "textový soubor"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "soubor z adresáře pro upload"
@@ -6521,19 +6586,19 @@ msgstr "ZAČÁTEK VÝPISU"
msgid "END RAW"
msgstr "KONEC VÝPISU"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Na konec dotazu byly automaticky přidány zpětné uvozovky!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Neuzavřené uvozovky"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Chybný identifikátor"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Neznámé interpunkční znaménko"
@@ -6581,7 +6646,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6591,8 +6656,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
-"%spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
+"spopisy transformací%s"
#: libraries/tbl_properties.inc.php:143
msgid "Transformation options"
@@ -6628,12 +6693,12 @@ msgid "As defined:"
msgstr "Dle zadání:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primární"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -6643,11 +6708,11 @@ msgid ""
"No description is available for this transformation.
Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co "
-"%s dělá."
+"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %"
+"s dělá."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Úložiště"
@@ -6655,12 +6720,12 @@ msgstr "Úložiště"
msgid "PARTITION definition"
msgstr "Definice PARTITION"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Přidat %s polí"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Musíte přidat alespoň jedno pole."
@@ -6837,73 +6902,73 @@ msgstr "V ZIP archívu nebyly nalezeny žádné soubory!"
msgid "Error in ZIP archive:"
msgstr "Chyba v ZIP archívu:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Obecná nastavení"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Porovnávání pro toto připojení k MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Nastavení vzhledu"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Více nastavení"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Verze protokolu"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Uživatel"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Znaková sada v MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Webserver"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Verze MySQL klienta"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Rozšíření PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Zobrazit informace o PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Oficiální stránka phpMyAdmina"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Přispějte"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Získejte podporu"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Seznam změn"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6914,7 +6979,7 @@ msgstr ""
"nastavit heslo pro uživatele 'root' a tím podstatně zvýšit zabezpečení "
"vašeho serveru."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6923,7 +6988,7 @@ msgstr ""
"V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není "
"kompatibilní s phpMyAdminem a může způsobit poškození dat!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6933,7 +6998,7 @@ msgstr ""
"bajtovou znakovou sadu. Bez rozšíření mbstring neumí phpMyAdmin správně "
"rozdělovat řetězce a proto to může mít nečekané následky."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6945,7 +7010,7 @@ msgstr ""
"platnost cookies nastavená v phpMyAdminovi. Z tohoto důvodu bude vaše "
"přilášení neplatné dříve, než je nastaveno v phpMyAdminovi."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -6954,13 +7019,13 @@ msgstr ""
"phpMyAdminovi. Z tohoto důvodu vaše přihlášení vyprší dříve než je nastavené "
"v phpMyAdminovi."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Nastavte klíč pro šifrování cookies (blowfish_secret) v konfiguračním "
"souboru (config.inc.php)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -6970,7 +7035,7 @@ msgstr ""
"existuje v adresáři s phpMyAdminem. Měli byste ho odstranit, jakmile je "
"phpMyAdmin nastaven."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -6979,7 +7044,7 @@ msgstr ""
"Úložiště nastavení phpMyAdmina není plně dostupné, některé z rozšířených "
"funkcí phpMyAdmina nelze používat. %sZde%s zjistíte proč."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -6989,7 +7054,7 @@ msgstr ""
"phpMyAdmin nemusí fungovat správně. Například navigační rám se nebude "
"automaticky obnovovat."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -6998,7 +7063,7 @@ msgstr ""
"Používaný MySQL modul v PHP je kompilován pro MySQL %s a server používá "
"verzi %s. Používání různých verzí může způsobit problémy."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7019,12 +7084,12 @@ msgstr "Filtr"
msgid "filter tables by name"
msgstr "filtrovat tabulky podle jména"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Nová tabulka"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Prosím vyberte databázi"
@@ -7263,8 +7328,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
-"%sNastavovacího skriptu%s."
+"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
+"sNastavovacího skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -7388,75 +7453,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Všechna oprávnění kromě GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Umožňuje měnit strukturu existujících tabulek."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Umožňuje měnit a rušit uložené procedury."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Umožňuje vytvářet nové databáze a tabulky."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Umožňuje vytvářet uložené procedury."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Umožňuje vytvářet nové tabulky."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Umožňuje vytvářet dočasné tabulky."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
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:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Umožňuje vytvářet nové pohledy."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Umožňuje mazat data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Umožňuje odstranit databáze a tabulky."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Umožňuje odstranit tabulky."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Umožňuje plánovat úlohy pomocí plánovače"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Umožňuje spouštět uložené procedury."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7464,33 +7529,33 @@ msgstr ""
"s oprávněními."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Umožňuje vytvářet a rušit indexy."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Umožňuje vkládat a přepisovat data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Umožňuje zamknout tabulku pro aktuální vlákno."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7498,60 +7563,60 @@ msgstr ""
"Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel "
"spustit za hodinu."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Umožňuje prohlížet procesy všech uživatelů"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nemá žádný vliv v této verzi MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Potřebné pro replikaci pomocných serverů."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Umožňuje vybírat data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Umožňuje přístup k úplnému seznamu databází."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Umožňuje vypnout server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7562,12 +7627,12 @@ msgstr ""
"proměnných a zabíjení vláken jiných uživatelů."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Umožňuje vytváření a mazání spouští"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Umožňuje měnit data."
@@ -7580,231 +7645,231 @@ msgctxt "None privileges"
msgid "None"
msgstr "Žádná"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Oprávnění pro jednotlivé tabulky"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Poznámka: názvy oprávnění v MySQL jsou uváděny anglicky "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globální oprávnění"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Oprávnění pro jednotlivé databáze"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Správa"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globální oprávnění"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Oprávnění pro jednotlivé databáze"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Omezení zdrojů"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Přihlašování"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Neměnit heslo"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Nebyl nalezen žádný uživatel."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Uživatel %s již existuje!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Uživatel byl přidán."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Byla aktualizována oprávnění pro %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Byla zrušena práva pro %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Heslo pro %s bylo úspěšně změněno."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Odstraňuji %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Musíte vybrat uživatele, které chcete odstranit!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Načítám oprávnění"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Vybraní uživatelé byli úspěšně odstraněni."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Oprávnění byla načtena úspěšně."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Upravit oprávnění"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Zrušit"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Jakýkoliv"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Přehled uživatelů"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Přidělování"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Přidat nového uživatele"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Odstranit vybrané uživatele"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Oprávnění pro jednotlivá pole"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Přidat oprávnění pro databázi"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Přidat oprávnění pro tabulku"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Změnit informace o uživateli / Kopírovat uživatele"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
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:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... zachovat původního uživatele."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... smazat původního uživatele ze všech tabulek."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Databáze pro uživatele"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Žádná"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
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:2149
+#: server_privileges.php:2122
#, 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:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Uživatelé mající přístup k „%s“"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globální"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "závislé na databázi"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "maska"
@@ -8929,7 +8994,7 @@ msgstr "Hodnota sezení"
msgid "Global value"
msgstr "Globální hodnota"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Stáhnout"
@@ -8969,55 +9034,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Nezabezpečené připojení"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Úložiště konfigurace"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Přehled"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Zobrazit skyté zprávy (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Žádné servery nejsou nastaveny"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nový server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Výchozí jazyk"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "Nechat uživatele, aby si vybral"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- žádný -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Výchozí server"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Konec řádku"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Zobrazit"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Nahrát"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Domovská stránka phpMyAdmina"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Přispějte"
@@ -9168,8 +9245,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
-"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
+"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:266
@@ -9180,8 +9257,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
-"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
+"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
@@ -9283,62 +9360,62 @@ msgstr "Tabulka %1$s byla úspěšně změněna"
msgid "Function"
msgstr "Funkce"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " Toto pole možná nepůjde
kvůli délce upravit "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Odstranit odkaz do skladiště BLOBů"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binární - neupravujte"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Nahrát do skladiště BLOBů"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Vložit jako nový řádek"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Vložit jako nový řádek a ignorovat chyby"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Zobrazit dotaz pro vložení"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "a poté"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Návrat na předchozí stránku"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Vložit další řádek"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Návrat na tuto stránku"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Upravit následující řádek"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi "
"směry"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Pokračovat ve vkládání s %s řádky"
@@ -9495,7 +9572,7 @@ msgstr "(„PRIMARY“ musí být jméno pouze primárního klíč
msgid "Add to index %s column(s)"
msgstr "Přidat %s polí do indexu"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Počet polí musí být větší než nula."
@@ -9521,97 +9598,97 @@ msgstr "Tabulka %s byla zkopírována do %s."
msgid "The table name is empty!"
msgstr "Jméno tabulky je prázdné!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Změnit pořadí tabulky podle"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(po jednom)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Přesunout tabulku do (databáze.tabulka):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Parametry tabulky"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Přejmenovat tabulku na"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopírovat tabulku do (databáze.tabulka):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Přepnout na zkopírovanou tabulku"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Údržba tabulky"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentovat tabulku"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Vyrovnávací paměť pro tabulku %s byla vyprázdněna"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Odstranit data nebo tabulku"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Vyprázdnit tabulku (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Odstranit tabulku (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Údržba oddílů"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Oddíl %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analyzovat"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Zkontrolovat"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimalizovat"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Přestavět"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Opravit"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Zrušit oddíly"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Zkontrolovat integritu odkazů:"
@@ -9619,39 +9696,39 @@ msgstr "Zkontrolovat integritu odkazů:"
msgid "Show tables"
msgstr "Zobrazit tabulky"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Využití místa"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Používá"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektivní"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistika řádků"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Údaj"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statický"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamický"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Délka řádku"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Velikost řádku "
@@ -9729,52 +9806,52 @@ msgstr "Žádná"
msgid "Column %s has been dropped"
msgstr "Pole %s byla odstraněno"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "V tabulce %s byl vytvořen primární klíč"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Na poli %s byl vytvořen index"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Zobrazit více operací"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Zobrazit relace"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Navrhnout strukturu tabulky"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Přidat sloupec"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Na konci tabulky"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Na začátku tabulky"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Po %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Vytvořit index na %s polích"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "používá oddíly"
@@ -9802,7 +9879,7 @@ msgstr "Sledování pro %s.%s , verze %s je zapnuté."
msgid "SQL statements executed."
msgstr "provedené SQL příkazy."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9810,102 +9887,132 @@ msgstr ""
"Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, "
"že na tuto operací máte oprávnění."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
"SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Snímek verze %s (SQL kód)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Sledovat tyto příkazy pro definici dat:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Sbírat chyby"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Sledovat tyto příkazy pro úpravu dat:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Sledování příkazů"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Zobrazit %s s datem od %s do %s od uživatele %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Odstranit všechny informace o sledování této tabulky"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Žádné databáze"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Datum"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Příkaz pro definici dat"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Příkaz pro úpravu dat"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "výpis SQL (stáhnout soubor)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "výpis SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Provedení SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exportovat jako %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Zobrazit verze"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Verze"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Vypnout sledování pro %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Vypnout teď"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Zapnuté sledování pro %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Zapnout teď"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Vytvořit verzi %s z %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Sledovat tyto příkazy pro definici dat:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Sledovat tyto příkazy pro úpravu dat:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Vytvořit verzi"
diff --git a/po/cy.po b/po/cy.po
index 6636811ab3..2e263c646c 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -4,21 +4,21 @@
# FIRST AUTHOR , YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
"Last-Translator: \n"
"Language-Team: Welsh \n"
-"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: cy\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Dangos pob"
@@ -48,9 +48,9 @@ msgstr ""
msgid "Search"
msgstr "Chwilio"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -66,22 +66,22 @@ msgstr "Chwilio"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Ewch"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Enw allweddol"
@@ -123,17 +123,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Cafodd y gronfa ddata %1$s ei chreu."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Sylw cronfa ddata:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Sylwadau tabl"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -141,7 +141,7 @@ msgstr "Sylwadau tabl"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Colofn"
@@ -152,11 +152,11 @@ msgstr "Colofn"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Math"
@@ -166,8 +166,8 @@ msgstr "Math"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -177,7 +177,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Diofyn"
@@ -200,39 +200,40 @@ msgstr "Cysylltu i"
msgid "Comments"
msgstr "Sylwadau"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Na"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ie"
@@ -244,8 +245,8 @@ msgstr "Argraffu"
msgid "View dump (schema) of database"
msgstr "Dangos dadlwythiad (sgema) y gronfa ddata"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata."
@@ -271,82 +272,82 @@ msgstr "Cafodd cronfa ddata %s ei hailenwi i %s"
msgid "Database %s has been copied to %s"
msgstr "Cafodd y gronfa ddata %s ei chopïo i %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ailenwch y gronfa ddata i"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Gorchymyn"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Ailenwch y gronfa ddata i"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Cafodd cronfa ddata %s ei gollwng."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
#| msgid "Copy database to"
msgid "Drop the database (DROP)"
msgstr "Copïwch y gronfa ddata i"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copïwch y gronfa ddata i"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Strwythur yn unig"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strwythur a data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Data yn unig"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Defnyddiwch CREATE DATABASE cyn copïo"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Ychwanegwch %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Ychwanegwch werth AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Ychwanegwch cyfyngiadau"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Newidiwch i'r gronfa ddata a gopïwyd"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Coladiad"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -358,7 +359,7 @@ msgstr ""
"Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u "
"hanalluogi. Pwyswch %syma%s i ddarganfod pam."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -368,17 +369,17 @@ msgstr "Sgema perthynol"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabl"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rhesi"
@@ -394,21 +395,21 @@ msgstr "ar ddefnydd"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Cread"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Diweddariad diwethaf"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Gwiriad diwethaf"
@@ -419,97 +420,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabl"
msgstr[1] "%s tabl"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Trefnu"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Esgynnol"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Disgynnol"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Dangos"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Meini prawf"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "And"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Or"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Addasu"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Ychwanegu/Dileu rhesi meini prawf"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Ymholiad Diweddaru"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Defnyddiwch Dablau"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Ymholiad SQL ar gronfa ddata %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Cyflwynwch yr Ymholiad"
@@ -551,7 +545,7 @@ msgstr[1] "%s ergyd mewn tabl %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Porwch"
@@ -561,14 +555,15 @@ msgstr "Porwch"
msgid "Delete the matches for the %s table?"
msgstr "Dilëwch data tracio ar gyfer y tabl hwn"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Dileu"
@@ -610,17 +605,17 @@ msgstr "Tu fewn colofn:"
msgid "No tables found in database"
msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Cafodd tabl %s ei wagu"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Cafodd golwg %s ei ollwng"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Cafodd tabl %s ei ollwng"
@@ -633,11 +628,11 @@ msgstr "Mae tracio'n weithredol"
msgid "Tracking is not active."
msgstr "Nid yw tracio'n weithredol"
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@@ -662,22 +657,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Gyda'r dewis:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Dewis Pob"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Dad-ddewis Pob"
@@ -686,16 +681,16 @@ msgid "Check tables having overhead"
msgstr "Gwiriwch dablau â gorbenion"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Allforio"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Argraffu golwg"
@@ -707,28 +702,42 @@ msgstr "Gwagu"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Gollwng"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Gwirio tabl"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimeiddio tabl"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Trwsio tabl"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Dadansoddi tabl"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Rename table to"
+msgid "Replace table prefix"
+msgstr "Ailenwi tabl i"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+msgid "Copy table with prefix"
+msgstr ""
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Geiriadur Data"
@@ -742,10 +751,10 @@ msgstr "Tablau a draciwyd"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Cronfa ddata"
@@ -753,36 +762,36 @@ msgstr "Cronfa ddata"
msgid "Last version"
msgstr "Fersiwn diweddaraf"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Crëwyd"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Diweddarwyd"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Statws"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Gweithred"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Dilëwch data tracio ar gyfer y tabl hwn"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "gweithredol"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "ddim yn weithredol"
@@ -790,11 +799,11 @@ msgstr "ddim yn weithredol"
msgid "Versions"
msgstr "Fersiynau"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Adroddiad tracio"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Ciplun strwythur"
@@ -802,8 +811,8 @@ msgstr "Ciplun strwythur"
msgid "Untracked tables"
msgstr "Tablau heb dracio "
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Tracio tabl"
@@ -862,8 +871,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
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."
@@ -930,6 +939,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -954,268 +970,286 @@ msgstr "Pwyso i dad-ddewis"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "A ydych chi wir am"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Rydych am DINISTRIO cronfa ddata gyfan!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Rydych am DINISTRIO cronfa ddata gyfan!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Rydych am DINISTRIO cronfa ddata gyfan!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Gweithdrefnau"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Deleting tracking data"
msgstr "Dilëwch data tracio ar gyfer y tabl hwn"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Gall y weithrediad hon gymryd amser hir. Parhau beth bynnag?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Rydych yn mynd i ANALLUOGI Ystorfa BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Gwerth ar goll yn y ffurflen!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Nid yw hwn yn rhif!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Mae enw'r gwesteiwr yn wag!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Mae enw'r defnyddiwr yn wag!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Mae'r cyfrinair yn wag!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Nid yw'r cyfrineiriau'n debyg!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new server"
msgid "Add a New User"
msgstr "Ychwanegwch weinydd newydd"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create version"
msgid "Create User"
msgstr "Crëwch fersiwn"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "No Privileges"
msgid "Reloading Privileges"
msgstr "Dim Breintiau"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Cau"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Diddymu"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "llwytho"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Prosesau"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Ailenwch y gronfa ddata i"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Ailenwch y gronfa ddata i"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copïwch y gronfa ddata i"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Set nodau"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one column."
msgid "Table must have at least one column"
msgstr "Mae'n rhaid i'r tabl gael o leiaf un golofn."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Crëwch dabl"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Chwilio"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "mewn ymholiad"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "Show insert query"
msgid "Show query box"
msgstr "Dangos ymholiad mewnosod"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Inline"
msgid "Inline Edit"
msgstr "Mewnol"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Cadw"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Cuddio"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "mewn ymholiad"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "Show insert query"
msgid "Show search criteria"
msgstr "Dangos ymholiad mewnosod"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Anwybyddu"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Dewis Allwedd Estron"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Dewis colofn i'w dangos"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generadu Cyfrinair"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generadu"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Newid cyfrinair"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "Llu"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1223,256 +1257,262 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Gwiriwch y fersiwn diweddaraf"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Neidiwch i'r gronfa ddata"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Gorffen"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Cynt"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Nesaf"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Heddiw"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Ionawr"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Chwefror"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Mawrth"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Ebrill"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Mehefin"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Gorffennaf"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Awst"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Medi"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Hydref"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Tachwedd"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Rhagfyr"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Ion"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Chwe"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Maw"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Meh"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Gor"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aws"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Med"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Hyd"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Tach"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Rhag"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Dydd Sul"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Dydd Llun"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Dydd Mawrth"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "DYdd Mercher"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Dydd Iau"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Dydd Gwener"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Dydd Sadwrn"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Llun"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Maw"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Iau"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Llu"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Ia"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Gw"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Wy"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Awr"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Munud"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Eiliad"
@@ -1521,33 +1561,33 @@ msgid "No index defined!"
msgstr "Dim indecs wedi'i ddiffinio!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indecsau"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unigryw"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Paciwyd"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr ""
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Sylw"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Golygu"
@@ -1571,32 +1611,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Cronfeydd Data"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Gwall"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rhes wedi'i heffeithio."
msgstr[1] "%1$d rhes wedi'u heffeithio."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rhes wedi'i dileu."
msgstr[1] "%1$d rhes wedi'u dileu."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1689,11 +1729,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
-"%1$sgript gosod%2$s er mwyn ei chreu."
+"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
+"$sgript gosod%2$s er mwyn ei chreu."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1844,19 +1884,19 @@ msgstr "Tablau"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Cyfanswm"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Gorbenion"
@@ -1944,16 +1984,16 @@ msgstr ""
"Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Gweinydd"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Dylech uwchraddio i %s %s neu'n well."
@@ -1988,7 +2028,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dogfennaeth"
@@ -2138,7 +2178,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Strwythur"
@@ -2173,7 +2213,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
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 "
@@ -2343,7 +2383,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Ailosod"
@@ -2459,7 +2499,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2590,7 +2630,7 @@ msgid "Character set of the file"
msgstr "Set nodau y ffeil"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Fformat"
@@ -2906,7 +2946,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Gweinyddion"
@@ -3639,7 +3679,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4102,9 +4142,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Cyfrinair"
@@ -4124,8 +4164,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Enw defnyddiwr"
@@ -4240,7 +4280,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Gwiriwch y fersiwn diweddaraf"
@@ -4399,7 +4439,7 @@ msgstr "Digwyddiadau"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Enw"
@@ -4422,8 +4462,8 @@ msgid "Designer"
msgstr "Dyluniwr"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Breintiau"
@@ -4435,7 +4475,7 @@ msgstr "Rheolweithiau"
msgid "Return type"
msgstr "Dychwelyd math"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4454,23 +4494,23 @@ msgstr "Dyw'r gweinydd ddim yn ymateb"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Manylion..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Newid cyfrinair"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Dim Cyfrinair"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ail-deipiwch"
@@ -4492,7 +4532,7 @@ msgid "Create"
msgstr "Creu"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Dim Breintiau"
@@ -4617,8 +4657,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4638,7 +4678,7 @@ msgstr "Cywasgiad"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Dim"
@@ -4823,7 +4863,7 @@ msgstr "Trefnu gan allwedd"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opsiynau"
@@ -4860,66 +4900,66 @@ msgstr "Dangos cynnwys BLOB"
msgid "Browser transformation"
msgstr "Trawsffurfiad porwr"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Cafodd y rhes ei dileu"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Lladd"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "mewn ymholiad"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Yn dangos rhesi"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "cyfanswm"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Cymerodd yr ymholiad %01.4f eiliad"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Newid"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Argraffu golwg (gyda thestunau llawn)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Dangos sgema PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Crëwch fersiwn"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Methu â darganfod y cysylltiad"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Gwybodaeth y fersiwn"
@@ -5306,8 +5346,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5426,9 +5466,9 @@ msgstr "Mathau MIME ar gael"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Gwesteiwr"
@@ -5439,7 +5479,7 @@ msgid "Generation Time"
msgstr "Amser Generadu"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Fersiwn y gweinydd"
@@ -5773,7 +5813,30 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Gw"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Gyrru"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Dim newid"
@@ -6075,8 +6138,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr ""
@@ -6097,7 +6160,7 @@ msgstr "Newidyn"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Gwerth"
@@ -6115,34 +6178,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Unrhyw ddefnyddiwr"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Defnyddiwch faes testun"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Unrhyw westeiwr"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lleol"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Y Gwesteiwr Hwn"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Defnyddiwch Dabl Gwesteiwyr"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6206,7 +6269,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ychwanegol"
@@ -6303,12 +6366,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Iaith anhysbys: %1$s."
@@ -6385,7 +6448,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Clirio"
@@ -6417,10 +6480,6 @@ msgstr "Cyfyngydd"
msgid " Show this query here again "
msgstr " Dangoswch yr ymholiad hwn yma eto"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Gyrru"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Dangos yn unig"
@@ -6429,7 +6488,7 @@ msgstr "Dangos yn unig"
msgid "Location of the text file"
msgstr "Lleoliad y ffeil destun"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
@@ -6468,19 +6527,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6520,7 +6579,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indecs"
@@ -6561,12 +6620,12 @@ msgid "As defined:"
msgstr "Fel a ddiffiniwyd:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Cynradd"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Testunllawn"
@@ -6578,7 +6637,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Peiriant Storio"
@@ -6586,12 +6645,12 @@ msgstr "Peiriant Storio"
msgid "PARTITION definition"
msgstr "Diffiniad PARTITION"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Ychwanegwch %s colofn"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Rydych chi wedi ychwanegu o leiaf un golofn."
@@ -6733,79 +6792,79 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Nodweddion perthynas cyffredinol"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Coladiad cysylltiad MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Nodweddion perthynas cyffredinol"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Fersiwn protocol"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Defnyddiwr"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Set nodau MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Gweinydd gwe"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Fersiwn cleient MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Estyniad PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Dangos gwybodaeth PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wici"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Hafan Swyddogol"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr ""
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Dim newid"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6813,21 +6872,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6835,24 +6894,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6864,21 +6923,21 @@ msgstr ""
"Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u "
"hanalluogi. Pwyswch %syma%s i ddarganfod pam."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6899,12 +6958,12 @@ msgstr "Hidlydd"
msgid "filter tables by name"
msgstr "enw tabl"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Crëwch dabl"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Dewiswch gronfa ddata"
@@ -7288,163 +7347,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7452,12 +7511,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7470,225 +7529,225 @@ msgctxt "None privileges"
msgid "None"
msgstr "Dim"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr ""
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr ""
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr ""
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr ""
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8695,7 +8754,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8727,55 +8786,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Cafodd yr addasiadau eu cadw"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Gorolwg"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Dangos negeseuon cudd (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Gweinydd newydd"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Iaith ddiofyn"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "gadewch i'r defnyddiwr ddewis"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "-dim-"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Gweinydd diofyn"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Diwedd y llinell"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Dangos"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "llwytho"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "hafan phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Rhodd"
@@ -9000,62 +9071,62 @@ msgstr ""
msgid "Function"
msgstr "Swyddogaeth"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Deuaidd - peidiwch â golygu"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Lanlwytho i storfa BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Mewnosod fel rhes newydd"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Dangos ymholiad mewnosod"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ac yna"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Dychwelyd i'r dudalen flaenorol"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Mewnosod rhes newydd arall"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Dychwelyd i'r dudalen hon"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Golygu'r rhes nesaf"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i "
"symud unrhyw le"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9211,7 +9282,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9237,101 +9308,101 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr ""
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr ""
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr ""
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Ailenwi tabl i"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr ""
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr ""
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr ""
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr ""
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Dilëwch data tracio ar gyfer y tabl hwn"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
msgstr "Copïwch y gronfa ddata i"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Cynhaliaeth ymraniadau"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Ymraniad %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Dadansoddi"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Gwirio"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimeiddio"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Ailadeiladu"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Trwsio"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Tynnu'r ymraniadu"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -9339,39 +9410,39 @@ msgstr ""
msgid "Show tables"
msgstr ""
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr ""
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr ""
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr ""
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr ""
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr ""
@@ -9448,54 +9519,54 @@ msgstr ""
msgid "Column %s has been dropped"
msgstr ""
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr ""
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Dangos fersiynau"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr ""
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr ""
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr ""
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr ""
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9523,107 +9594,137 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Ciplun fersiwn %s (cod SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Traciwch y datganiadau diffiniad data hyn:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query"
+msgid "Query error"
+msgstr "Ymholiad"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Traciwch y datganiadau trin data hyn:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Datganiadau tracio"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Dilëwch data tracio ar gyfer y tabl hwn"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Dim cronfeydd data"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Dyddiad"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Datganiad diffiniad data"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Datganiad trin data"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Dadlwythiad SQL (lawrlwytho ffeil)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Dadlwythiad SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Bydd yr opsiwn hwn yn disodli eich tabl a'r data sydd ynddo."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Gweithrediad SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Allforio fel %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Dangos fersiynau"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Fersiwn"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Dadweithredwch dracio am %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Dadweithredwch nawr"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Gweithredwch dracio am %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Gweithredwch nawr"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Crëwch fersiwn %s o %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Traciwch y datganiadau diffiniad data hyn:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Traciwch y datganiadau trin data hyn:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Crëwch fersiwn"
diff --git a/po/da.po b/po/da.po
index b82d0b7c47..f7f136e606 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
"Last-Translator: \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"
+"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Vis alle"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Søg"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Søg"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Udfør"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nøglenavn"
@@ -118,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s er oprettet,"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Databasekommentar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabel kommentarer"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,7 +136,7 @@ msgstr "Tabel kommentarer"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolonnenavn"
@@ -147,11 +147,11 @@ msgstr "Kolonnenavn"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Datatype"
@@ -161,8 +161,8 @@ msgstr "Datatype"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulværdi"
@@ -172,7 +172,7 @@ msgstr "Nulværdi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Standardværdi"
@@ -195,39 +195,40 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nej"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ja"
@@ -239,8 +240,8 @@ msgstr "Print"
msgid "View dump (schema) of database"
msgstr "Vis dump (skema) af database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Ingen tabeller fundet i databasen."
@@ -266,78 +267,78 @@ msgstr "Database %s er blevet omdøbt til %s"
msgid "Database %s has been copied to %s"
msgstr "Database %s er blevet kopieret til %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Omdøb database til"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Fjern database"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s er slettet."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Drop databasen (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiér database til"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Kun strukturen"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur og data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Kun data"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE før kopiering"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Tilføj %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Tilføj AUTO_INCREMENT værdi"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Tilføj begrænsninger"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Skift til den kopierede database"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Kollation (Collation)"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -349,7 +350,7 @@ msgstr ""
"De ekstra features for at arbejde med linkede tabeller er deaktiveret. For "
"at se hvorfor, klik %sher%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editer eller eksporter relations skema"
@@ -357,17 +358,17 @@ msgstr "Editer eller eksporter relations skema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabel"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rækker"
@@ -383,21 +384,21 @@ msgstr "i brug"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Oprettelse"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Sidste opdatering"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Sidste check"
@@ -408,97 +409,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabel"
msgstr[1] "%s tabeller"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Din SQL-forespørgsel blev udført korrekt"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "skift til"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sorter"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Stigende"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Faldende"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Vis"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterier"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins (Indsæt)"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Og"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del (Slet)"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Eller"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Ret"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Tilføj/Slet kriterie-række"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Tilføj/Slet kolonner"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Opdater forespørgsel"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Benyt tabeller"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-forespørgsel til database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Send forespørgsel"
@@ -539,7 +533,7 @@ msgstr[1] "%s hits i tabel %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Vis"
@@ -549,14 +543,15 @@ msgstr "Vis"
msgid "Delete the matches for the %s table?"
msgstr "Data dump for tabellen"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Slet"
@@ -600,17 +595,17 @@ msgstr "Indeni tabel(ler):"
msgid "No tables found in database"
msgstr "Ingen tabeller fundet i databasen."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s er tømt"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Visning %s er blevet droppet"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s er slettet"
@@ -623,11 +618,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -651,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard datalageret på denne MySQL-server."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med det markerede:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Afmærk alt"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Fjern alle mærker"
@@ -675,16 +670,16 @@ msgid "Check tables having overhead"
msgstr "Check tabeller der har overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Vis (udskriftvenlig)"
@@ -696,28 +691,44 @@ msgstr "Tøm"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Slet"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Tjek tabel"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimer tabel"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparer tabel"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analysér tabel"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Erstat data i tabellen med filens data"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Erstat data i tabellen med filens data"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Dictionary"
@@ -731,10 +742,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Database"
@@ -742,36 +753,36 @@ msgstr "Database"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Handling"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -779,11 +790,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -791,8 +802,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -851,11 +862,11 @@ msgstr "Dump er blevet gemt i filen %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
-"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
+"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
+"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -924,6 +935,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Din SQL-forespørgsel blev udført korrekt"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -949,269 +967,287 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Er du sikker på at du vil "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Du er ved at DESTRUERE en komplet database!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Du er ved at DESTRUERE en komplet database!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Du er ved at DESTRUERE en komplet database!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Procedurer"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Tillader indsættelse og erstatning af data."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Denne operation kan tage lang tid. Fortsæt alligevel?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Ingen værdi i formularen !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Dette er ikke et tal!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Der er intet værtsnavn!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Intet brugernavn!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Der er ikke angivet noget kodeord!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "De to kodeord er ikke ens!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Tilføj en ny bruger"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create"
msgid "Create User"
msgstr "Opret"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Genindlæs privilegierne"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Fjern valgte brugere"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Annuller"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Processer"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Omdøb database til"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Omdøb database til"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopiér database til"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Tegnsæt"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabellen skal indeholde mindst ét felt."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Opret tabel"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Søg"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "i forespørgsel"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show query box"
msgstr "Viser SQL-forespørgsel"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Lagre"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Gem"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skjul"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "i forespørgsel"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search criteria"
msgstr "Viser SQL-forespørgsel"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Vælg refereret nøgle"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Vælg fremmednøgle"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Vælg venligst den primære nøgle eller en unik nøgle"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Vælg felt der skal vises"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generér Kodeord"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generér"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ændre kodeord"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "man"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1219,123 +1255,129 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+#| msgid "No databases"
+msgid "up to date"
+msgstr "Ingen databaser"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Ingen"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Næste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binært "
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "maj"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1343,176 +1385,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "søn"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "man"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "tir"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "fre"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "lør"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "søn"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "man"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "tir"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ons"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "tor"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "fre"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "i brug"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1565,33 +1607,33 @@ msgid "No index defined!"
msgstr "Intet indeks defineret!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeks"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unik"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalitet"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ret"
@@ -1613,25 +1655,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databaser"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fejl"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1639,7 +1681,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Ingen rækker valgt"
msgstr[1] "Ingen rækker valgt"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1734,8 +1776,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@@ -1886,19 +1928,19 @@ msgstr "Tabeller"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -1997,16 +2039,16 @@ msgstr ""
"Ugyldigt hostnavn for server %1$s. Gennemgå venligst din konfiguration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autorisationsmetode sat i konfiguration:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du burde opdatere til %s %s eller senere."
@@ -2041,7 +2083,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentation"
@@ -2191,7 +2233,7 @@ msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktur"
@@ -2226,7 +2268,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "webserver upload-mappe"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Mappen du har sat til upload-arbejde kan ikke findes"
@@ -2396,7 +2438,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Nulstil"
@@ -2512,7 +2554,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2641,7 +2683,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2962,7 +3004,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servere"
@@ -3703,7 +3745,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4163,9 +4205,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Kodeord"
@@ -4185,8 +4227,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4301,7 +4343,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4450,7 +4492,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Navn"
@@ -4473,8 +4515,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegier"
@@ -4486,7 +4528,7 @@ msgstr "Rutiner"
msgid "Return type"
msgstr "Retur type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4506,23 +4548,23 @@ msgstr "Serveren svarer ikke"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Ændre kodeord"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Intet kodeord"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Skriv igen"
@@ -4546,7 +4588,7 @@ msgid "Create"
msgstr "Opret"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Ingen privilegier"
@@ -4675,8 +4717,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@@ -4699,7 +4741,7 @@ msgstr "Komprimering"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Ingen"
@@ -4896,7 +4938,7 @@ msgstr "Sorteringsnøgle"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Indstillinger"
@@ -4935,66 +4977,66 @@ msgstr ""
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Rækken er slettet!"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Dræb (Kill)"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "i forespørgsel"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Viser poster "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Forepørgsel tog %01.4f sek"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ændre"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Forespørgselsresultat operationer"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Udskrift-visning (med fulde tekster)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Vis PDF-skematik"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Opret"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link ikke fundet"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versionsinformation"
@@ -5395,8 +5437,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5517,9 +5559,9 @@ msgstr "Tilgængelige MIME-typer"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Vært"
@@ -5530,7 +5572,7 @@ msgid "Generation Time"
msgstr "Genereringstid"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Serverversion"
@@ -5870,7 +5912,30 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "fre"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Send"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Ingen ændring"
@@ -6176,8 +6241,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Brugernavn"
@@ -6198,7 +6263,7 @@ msgstr "Variabel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Værdi"
@@ -6216,34 +6281,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Enhver bruger"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Brug tekstfelt"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Enhver vært"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Denne Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Brug Host Tabel"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6307,7 +6372,7 @@ msgstr "Attributter"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstra"
@@ -6410,12 +6475,12 @@ msgid "Toggle scratchboard"
msgstr "tegnebræt til/fra"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukendt sprog: %1$s."
@@ -6492,7 +6557,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Kør SQL-forspørgsel(er) på database %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6526,10 +6591,6 @@ msgstr "Adskiller"
msgid " Show this query here again "
msgstr " Vis forespørgslen her igen "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Send"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Kun oversigt"
@@ -6538,7 +6599,7 @@ msgstr "Kun oversigt"
msgid "Location of the text file"
msgstr "Tekstfilens placering"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "webserver upload-mappe"
@@ -6590,19 +6651,19 @@ msgstr "BEGYND RÅ"
msgid "END RAW"
msgstr "SLUT RÅ"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Ikke-lukket quote"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Ugyldig identifikator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Ukendt tegnsætnings-streng"
@@ -6656,7 +6717,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6705,12 +6766,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primær"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fuldtekst"
@@ -6724,7 +6785,7 @@ msgstr ""
"forfatteren, hvad %s gør."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Datalager"
@@ -6732,13 +6793,13 @@ msgstr "Datalager"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Tilføj %s felt(er)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6963,81 +7024,81 @@ msgstr "Ingen filer fundet i ZIP arkivet!"
msgid "Error in ZIP archive:"
msgstr "Fejl i ZIP arkiv:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Generelle relationsmuligheder"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL forbindelses-sammenkøring"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Generelle relationsmuligheder"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokolversion"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Bruger"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL Tegnsæt"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL klientversion"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Vis PHP-information"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Officiel phpMyAdmin hjemmeside "
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Attributter"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Ingen ændring"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7049,7 +7110,7 @@ msgstr ""
"kører med denne standardindstilling, er åben for indtrængen, og du "
"opfordres stærkt til at gøre noget ved dette sikkerhedshul."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7059,7 +7120,7 @@ msgstr ""
"indstilling er ikke kompatibel med phpMyAdmin og kan forårsage ødelæggelse "
"af nogle data!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7069,7 +7130,7 @@ msgstr ""
"multibyte tegnsæt. Uden mbstring-udvidelsen er phpMyAdmin ude af stand til "
"at opdele strenge korrekt og dette kan forårsage uventede resultater"
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7077,25 +7138,25 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Konfigurationsfilen skal nu bruge et hemmeligt kodeord (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7107,14 +7168,14 @@ msgstr ""
"De ekstra features for at arbejde med linkede tabeller er deaktiveret. For "
"at se hvorfor, klik %sher%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7123,7 +7184,7 @@ msgstr ""
"Din PHP MySQL-biblioteks version %s afviger fra din MySQL server version %s. "
"Dette kan forårsage uforudsigelige resultater."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7144,14 +7205,14 @@ msgstr ""
msgid "filter tables by name"
msgstr "tabelnavn"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Opret tabel"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Vælg en database"
@@ -7551,75 +7612,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Inkluderer alle privilegier pånær GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Tillader ændring af strukturen på eksisterende tabeller."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Tillader ændring og sletning af gemte rutiner."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Tillader oprettelse af nye databaser og tabeller."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Tillader oprettelse af gemte rutiner."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Tillader oprettelse af nye tabeller."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Tillader oprettelse af midlertidige tabeller."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Tillader oprettelse af nye Allows creating new views."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Tillader sletning af data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Tillader at droppe databaser og tabeller."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Tillader at droppe tabeller."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Tillader udførelse af gemte rutiner."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7627,33 +7688,33 @@ msgstr ""
"tabellerne."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Tillader at skabe og droppe indeks."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Tillader indsættelse og erstatning af data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Tillader låsning af tabeller for nuværende tråd."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7661,58 +7722,58 @@ msgstr ""
"Begrænser antallet af kommandoer som ændrer enhver tabel eller database "
"brugeren må udføre pr. time."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Begrænser antallet af samtidige forbindelser brugere må have."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Har ingen effekt i denne MySQL version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Nødvendigt for replikationsslaverne."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Tillader læsning af data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Giver adgang til den fuldstændige liste over databaser."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Tillader nedlukning af serveren."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7723,12 +7784,12 @@ msgstr ""
"globale variabler eller for at dræbe andre brugeres tråde."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Tillader ændring af data."
@@ -7743,195 +7804,195 @@ msgctxt "None privileges"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabel-specifikke privilegier"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " NB: Navne på MySQL privilegier er på engelsk "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globale privilegier"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Database-specifikke privilegier"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globale privilegier"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Database-specifikke privilegier"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ressourcebegrænsninger"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Login-information"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Kodeord må ikke ændres"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ingen bruger(e) fundet."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Brugeren %s findes i forvejen!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Du har tilføjet en ny bruger."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Du har opdateret privilegierne for %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Du har tilbagekaldt privilegierne for %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Kodeordet for %s blev korrekt udskiftet."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Sletter %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Ingen brugere valgt til sletning!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Genindlæs privilegierne"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "De valgte brugere er blevet korrekt slettet."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privilegierne blev korrekt genindlæst."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Ret privilegier"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Tilbagekald"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Enhver"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Brugeroversigt"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Tildel"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Tilføj en ny bruger"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Fjern valgte brugere"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Drop databaser der har samme navne som brugernes."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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."
+"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
+"s før du fortsætter."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Den valgte bruger blev ikke fundet i privilegietabellen."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Kolonne-specifikke privilegier"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Tilføj privilegier på følgende database"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Tilføj privileges på følgende tabel"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Ret Login-information / Kopiér bruger"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Opret en bruger med samme privilegier og ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... behold den gamle."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... slet den gamle fra brugertabellerne."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7939,44 +8000,44 @@ msgstr ""
" ... slet den gamle fra brugertabellerne og genindlæs privilegierne "
"efterfølgende."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Database for bruger"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Opret database med samme navn og tildel alle privilegier"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Brugere med adgang til "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "database-specifik"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "jokertegn"
@@ -9109,7 +9170,7 @@ msgstr "Sessionsværdi"
msgid "Global value"
msgstr "Global værdi"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9141,55 +9202,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Rettelserne er gemt!"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9414,64 +9487,64 @@ msgstr ""
msgid "Function"
msgstr "Funktion"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " På grund af feltets længde,
kan det muligvis ikke ændres "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binært - må ikke ændres "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Indsæt som ny række"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "og derefter"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Tilbage til foregående side"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Indsæt endnu en ny række"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Gå tilbage til denne side"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Redigér næste række"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL"
"+piletasterne til at flytte frit omkring"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9632,7 +9705,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Føj til indeks %s kolonne(r)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Kolonneantal skal være større end nul."
@@ -9658,103 +9731,103 @@ msgstr "Tabellen %s er nu kopieret til: %s."
msgid "The table name is empty!"
msgstr "Intet tabelnavn!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Arrangér tabelrækkefølge efter"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(enkeltvis)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Flyt tabel til (database.tabel):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tabel-indstillinger"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Omdøb tabel til"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopier tabel til (database.tabel):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Skift til den kopierede tabel"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabelvedligeholdelse"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentér tabel"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabel %s er blevet flushet"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Flush tabellen (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Data dump for tabellen"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
msgstr "Kopiér database til"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Check reference-integriteten"
@@ -9762,39 +9835,39 @@ msgstr "Check reference-integriteten"
msgid "Show tables"
msgstr "Vis tabeller"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Pladsforbrug"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Benyttelse"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Række-statistik"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Erklæringer"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamisk"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Rækkelængde"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Rækkestørrelse "
@@ -9878,57 +9951,57 @@ msgstr "Ingen"
msgid "Column %s has been dropped"
msgstr "Tabel %s er slettet"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "En primær nøgle er blevet tilføjet til %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Der er tilføjet et indeks til %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Vis PHP-information"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Se Relationer"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Foreslå tabelstruktur"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Tilføj %s felt(er)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "I slutningen af tabel"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "I begyndelsen af tabel"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Efter %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Dan et indeks på %s kolonner"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9956,107 +10029,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Forespørgselstype"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Tillader indsættelse og erstatning af data."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Ingen databaser"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
diff --git a/po/de.po b/po/de.po
index f998550f85..cf52518dd1 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
"Last-Translator: Dominik Geyer \n"
"Language-Team: german \n"
-"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Alles anzeigen"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Suche"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Suche"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Schlüsselname"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Die Datenbank %1$s wurde erzeugt."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Datenbankkommentar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabellen-Kommentar"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Tabellen-Kommentar"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Spalte"
@@ -149,11 +149,11 @@ msgstr "Spalte"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -163,8 +163,8 @@ msgstr "Typ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -174,7 +174,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Standard"
@@ -197,39 +197,40 @@ msgstr "Verweise"
msgid "Comments"
msgstr "Kommentare"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nein"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ja"
@@ -241,8 +242,8 @@ msgstr "Drucken"
msgid "View dump (schema) of database"
msgstr "Dump (Schema) der Datenbank anzeigen"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Es wurden keine Tabellen in der Datenbank gefunden."
@@ -268,87 +269,87 @@ msgstr "Datenbank %s wurde umbenannt zu %s"
msgid "Database %s has been copied to %s"
msgstr "Datenbank %s wurde nach %s kopiert"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Datenbank umbenennen in"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Befehl"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Datenbank entfernen"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Datenbank %s wurde gelöscht."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Datenbank löschen (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Datenbank kopieren nach"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Nur Struktur"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur und Daten"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Nur Daten"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Vor dem Kopieren CREATE DATABASE ausführen."
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Füge %s hinzu"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT-Wert hinzufügen"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Constraints hinzufügen"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Zu kopierter Datenbank wechseln"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Kollation"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
-"%s um herauszufinden warum."
+"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
+"s um herauszufinden warum."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Beziehungsschema bearbeiten oder exportieren"
@@ -356,17 +357,17 @@ msgstr "Beziehungsschema bearbeiten oder exportieren"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabelle"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Zeilen"
@@ -382,21 +383,21 @@ msgstr "in Benutzung"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Erzeugt am"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Aktualisiert am"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Letzter Check am"
@@ -407,97 +408,90 @@ msgid_plural "%s tables"
msgstr[0] "%s Tabelle"
msgstr[1] "%s Tabellen"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt."
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Wechseln zu"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "Visueller Builder"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sortierung"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "aufsteigend"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "absteigend"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Zeige"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterium"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Einf."
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "und"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Entf."
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "oder"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Verändern"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Kriterienzeilen hinzufügen/entfernen"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Spalten hinzufügen/entfernen"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Aktualisieren"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Verwendete Tabellen"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-Befehl in der Datenbank %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
@@ -538,7 +532,7 @@ msgstr[1] "%s Treffer in der Tabelle %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Anzeigen"
@@ -547,14 +541,15 @@ msgstr "Anzeigen"
msgid "Delete the matches for the %s table?"
msgstr "Treffer für Tabelle %s löschen?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Löschen"
@@ -593,17 +588,17 @@ msgstr "In Spalte:"
msgid "No tables found in database"
msgstr "Diese Datenbank enthält keine Tabellen."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Die Tabelle %s wurde geleert."
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Die Ansicht %s wurde gelöscht"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Die Tabelle %s wurde gelöscht."
@@ -616,14 +611,14 @@ msgstr "Tracking ist aktiviert."
msgid "Tracking is not active."
msgstr "Tracking ist nicht aktiviert."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die "
-"%sDokumentation%s."
+"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %"
+"sDokumentation%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -646,22 +641,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "markierte:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Alle auswählen"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Auswahl entfernen"
@@ -670,16 +665,16 @@ msgid "Check tables having overhead"
msgstr "Tabellen m. Überhang ausw."
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportieren"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Druckansicht"
@@ -691,28 +686,46 @@ msgstr "Leeren"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Löschen"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Überprüfe Tabelle"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiere Tabelle"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Repariere Tabelle"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analysiere Tabelle"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Gehe zur Tabelle"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Tabelleninhalt ersetzen"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Tabelleninhalt ersetzen"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Strukturverzeichnis"
@@ -726,10 +739,10 @@ msgstr "Verfolgte Tabellen"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Datenbank"
@@ -737,36 +750,36 @@ msgstr "Datenbank"
msgid "Last version"
msgstr "Letzte Version"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Erstellt"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Aktualisiert"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Aktion"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Lösche die Verlaufsdaten für diese Tabelle"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktiv"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "nicht aktiv"
@@ -774,11 +787,11 @@ msgstr "nicht aktiv"
msgid "Versions"
msgstr "Versionen"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Tracking Report"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Struktur Schnapschuss"
@@ -786,8 +799,8 @@ msgstr "Struktur Schnapschuss"
msgid "Untracked tables"
msgstr "Nicht verfolgte Tabellen"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Verfolge Tabelle"
@@ -846,11 +859,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
-"%sDokumentation%s zur Lösung diese Problems."
+"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
+"sDokumentation%s zur Lösung diese Problems."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -921,6 +934,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt."
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -945,225 +965,243 @@ msgstr "Zum Abwählen anklicken"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Die Anweisung \"DROP DATABASE\" wurde deaktiviert."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Möchten Sie wirklich diese Abfrage ausführen "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Ereignis wird gelöscht"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Prozedur wird gelöscht"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Trackingdaten werden gelöscht."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Primary Key/Index wird gelöscht"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
"Diese Operation könnte einige Zeit beanspruchen. Trotzdem weitermachen?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Sie sind dabei ein BLOB-Repository zu deaktivieren!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Wirklich alle BLOB-Referenzen für Datenbank %s deaktivieren?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Das Formular ist leer !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Das ist keine Zahl!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Es wurde kein Host angegeben!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Kein Benutzername eingegeben!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Es wurde kein Passwort angegeben!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Die eingegebenen Passwörter sind nicht identisch!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Neuen Benutzer hinzufügen"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Erzeuge Benutzer"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Benutzerrechte werden neu geladen"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Die ausgewählten Benutzer werden gelöscht"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Schliesse"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Abbrechen"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Laden"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Bearbeite Anfrage"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Fehler beim Bearbeiten der Anfrage"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Spalte wird gelöscht"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Primärschlüssel wird hinzugefügt"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Datenbanken werden umbenannt."
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Lade Datenbank neu"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Datenbank wird kopiert"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Zeichensatz wird geändert"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Die Tabelle muss mindestens eine Spalte haben"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Erzeuge Tabelle"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Suche"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "SQL-Querybox ausblenden"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "SQL-Querybox anzeigen"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Direkt bearbeiten"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Speichern"
# Hide heist im deutschen in der EDV ausblenden
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Verstecken"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Suchkriterien ausblenden"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Suchkriterien anzeigen"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorieren"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Wählen Sie den referenzierten Schlüssel"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Wähle Fremdschlüssel"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Anzuzeigende Spalte auswählen"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Option hinzufügen zu Spalte "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Passwort generieren"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generieren"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Passwort ändern"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Mehr"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1173,254 +1211,260 @@ msgstr ""
"sollten. Die neuste Version ist %s, erschienen am %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", aktuellste stabile Version:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Springe zu Datenbank"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Fertig"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Vorherige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Nächste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Heute"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Januar"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Februar"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "März"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "April"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Juni"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Juli"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "August"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "September"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Oktober"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "November"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Dezember"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mrz"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Sonntag"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Montag"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Dienstag"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Mittwoch"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Donnerstag"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Freitag"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Samstag"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Wo"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Stunde"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekunde"
@@ -1473,33 +1517,33 @@ msgid "No index defined!"
msgstr "Kein Index definiert!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indizes"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unique"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Gepackt"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalität"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Bearbeiten"
@@ -1523,32 +1567,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Datenbanken"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fehler"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d Zeile betroffen."
msgstr[1] "%1$d Zeilen betroffen."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d Zeile gelöscht."
msgstr[1] "%1$d Zeilen gelöscht."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1643,8 +1687,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
@@ -1799,19 +1843,19 @@ msgstr "Tabellen"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Daten"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Insgesamt"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Überhang"
@@ -1902,16 +1946,16 @@ msgstr ""
"Konfiguration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Ungültige Authentifikationsmethode:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Sie sollten auf %s %s oder neuer umsteigen."
@@ -1946,7 +1990,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentation"
@@ -2096,7 +2140,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktur"
@@ -2130,7 +2174,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden."
@@ -2288,7 +2332,7 @@ msgstr "Erlaube den Benutzern diesen Wert anzupassen"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Zurücksetzen"
@@ -2417,7 +2461,7 @@ msgid "Compress on the fly"
msgstr "On the fly komprimieren"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfigurationsdatei"
@@ -2546,7 +2590,7 @@ msgid "Character set of the file"
msgstr "Zeichensatz der Datei"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2848,7 +2892,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Aussehen der Navigation anpassen"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Server"
@@ -3622,7 +3666,7 @@ msgstr "SweKey Konfigurationsdatei"
msgid "Authentication method to use"
msgstr "Zu benutzende Authentifikations-Methode"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Authentifikationstyp"
@@ -4145,9 +4189,9 @@ msgstr "Erfordert das der SQL-Validator aktiviert ist"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Passwort"
@@ -4171,8 +4215,8 @@ msgstr ""
"Falls Sie einen benutzerdefinierten Benutzernamen haben, hier angeben "
"(Standard ist [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Benutzername"
@@ -4298,7 +4342,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Auswirkungen von Mehrfachbefehlen zeigen"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Auf neue Version prüfen"
@@ -4448,7 +4492,7 @@ msgstr "Ereignisse"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Name"
@@ -4471,8 +4515,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Rechte"
@@ -4484,7 +4528,7 @@ msgstr "Routinen"
msgid "Return type"
msgstr "Rückgabe-Typ"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4508,23 +4552,23 @@ msgstr ""
"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt "
"konfiguriert)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Details ..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Passwort ändern"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Kein Passwort"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Wiederholen"
@@ -4546,7 +4590,7 @@ msgid "Create"
msgstr "Anlegen"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Keine Rechte"
@@ -4651,8 +4695,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@@ -4674,7 +4718,7 @@ msgstr "Komprimierung:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "keine"
@@ -4853,7 +4897,7 @@ msgstr "Nach Schlüssel sortieren"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Optionen"
@@ -4886,62 +4930,62 @@ msgstr "BLOB Inhalte anzeigen"
msgid "Browser transformation"
msgstr "Darstellungsumwandlung"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopieren"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Die Zeile wurde gelöscht."
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Beenden"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in der Abfrage"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Zeige Datensätze "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "insgesamt"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "die Abfrage dauerte %01.4f sek."
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ändern"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operationen für das Abfrageergebnis"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Druckansicht (vollständige Textfelder)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Diagramm anzeigen"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Erzeuge View"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Der Verweis wurde nicht gefunden."
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versionsinformationen"
@@ -5384,8 +5428,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
"XT-Website%s verfügbar."
@@ -5484,9 +5528,9 @@ msgstr "MIME-Typen anzeigen"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5497,7 +5541,7 @@ msgid "Generation Time"
msgstr "Erstellungszeit"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Server Version"
@@ -5863,7 +5907,32 @@ msgstr "keine"
msgid "Convert to Kana"
msgstr "Nach Kana konvertieren"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Fr"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Abschicken"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Index hinzufügen"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Keine Änderung"
@@ -6176,8 +6245,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Benutzername"
@@ -6198,7 +6267,7 @@ msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Wert"
@@ -6218,34 +6287,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Benutzer für den Replication-Slave hinzufügen"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Jeder Benutzer"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Textfeld verwenden"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Jeder Host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Dieser Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Verwende Hosttabelle"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6309,7 +6378,7 @@ msgstr "Attribute"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6402,12 +6471,12 @@ msgid "Toggle scratchboard"
msgstr "Klemmbrett anzeigen"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unbekannte Sprache: \"%1$s\"."
@@ -6481,7 +6550,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL-Befehl(e) in Datenbank %s ausführen"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Werte löschen"
@@ -6513,10 +6582,6 @@ msgstr "Begrenzer"
msgid " Show this query here again "
msgstr "Diese Abfrage hier wieder anzeigen"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Abschicken"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Nur zeigen"
@@ -6525,7 +6590,7 @@ msgstr "Nur zeigen"
msgid "Location of the text file"
msgstr "Datei"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Upload-Verzeichnis auf dem Webserver"
@@ -6578,19 +6643,19 @@ msgstr "BEGINN DER AUSGABE"
msgid "END RAW"
msgstr "ENDE DER AUSGABE"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Am Ende der Abfrage automatisch ergänzter Backtick!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Nicht geschlossene Anführungszeichen"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Ungültiger Bezeichner"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Unbekannte Interpunktion"
@@ -6639,7 +6704,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6686,12 +6751,12 @@ msgid "As defined:"
msgstr "Wie definiert:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primärschlüssel"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Volltext"
@@ -6702,11 +6767,11 @@ msgid ""
"author what %s does."
msgstr ""
"Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere "
-"Informationen wenden Sie sich bitte an den Autoren der Funktion ""
-"%s"."
+"Informationen wenden Sie sich bitte an den Autoren der Funktion "%"
+"s"."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Tabellenformat"
@@ -6714,12 +6779,12 @@ msgstr "Tabellenformat"
msgid "PARTITION definition"
msgstr "PARTITION Definition"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "%s Spalte(n) einfügen"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Sie müssen mindestens eine Spalte hinzufügen."
@@ -6908,73 +6973,73 @@ msgstr "Keine Dateien im ZIP-Archiv gefunden!"
msgid "Error in ZIP archive:"
msgstr "Fehler im ZIP-Archiv:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Allgemeine Einstellungen"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Zeichensatz / Kollation der MySQL-Verbindung"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Anzeige-Einstellungen"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Weitere Einstellungen"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokoll-Version"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Benutzer"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-Zeichensatz"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Webserver"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL-Client-Version"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP Erweiterung"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP-Informationen anzeigen"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Offizielle Homepage "
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Mitmachen"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Unterstützung erhalten"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Liste der Änderungen"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6987,7 +7052,7 @@ msgstr ""
"leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke "
"unbedingt schließen!"
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6997,7 +7062,7 @@ msgstr ""
"aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen "
"und Datenverlust kommen kann."
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7008,7 +7073,7 @@ msgstr ""
"Erweiterung ist phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was "
"zu unerwarteten Ergebnissen führen kann."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7020,7 +7085,7 @@ msgstr ""
"die in phpMyAdmin konfigurierte Cookiegültigkeit, deshalb wird Ihre "
"Anmeldung eher ablaufen als in phpMyAdmin konfiguriert."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7029,13 +7094,13 @@ msgstr ""
"phpMyAdmin eingestellt ist, daher wird Ihre Anmeldung eher ablaufen als in "
"phpMyAdmin konfiguriert."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Ab sofort muss ein geheimes Passwort zur Verschlüsselung in der "
"Konfigurationsdatei gesetzt werden (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7044,7 +7109,7 @@ msgstr ""
"Das [code]config[/code] Unterverzeichnis des Installationsskripts ist noch "
"vorhanden. Sie sollten es nach der Konfiguration von phpMyAdmin entfernen."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7054,7 +7119,7 @@ msgstr ""
"einige erweiterte Funktionen wurden deaktiviert. Klicken Sie %shier%s, um "
"herauszufinden warum."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7064,7 +7129,7 @@ msgstr ""
"von phpMyAdmin stehen daher nicht zur Verfügung. Zum Beispiel wird die "
"Navigation nicht automatisch aktualisiert."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7073,7 +7138,7 @@ msgstr ""
"Die Version der verwendeten PHP MySQL Bibliothek %s unterscheidet sich von "
"der Version des MySQL Servers %s. Dies kann zu unerwartetem Verhalten führen."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7094,12 +7159,12 @@ msgstr "Filter"
msgid "filter tables by name"
msgstr "Tabellen nach Namen filtern"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Erzeuge Tabelle"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Bitte Datenbank auswählen"
@@ -7468,76 +7533,76 @@ msgid "Includes all privileges except GRANT."
msgstr "Enthält alle Rechte bis auf GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Erlaubt das Verändern und Löschen von Routinen."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Erlaubt das Erstellen von gespeicherten Routinen."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Erlaubt das Erstellen neuer Tabellen."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Erlaubt das Erstellen temporärer Tabellen."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Erlaubt das Erstellen von Views."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Erlaubt das Löschen von Daten."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Erlaubt das Löschen ganzer Tabellen."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Erlaubt das Ausführen von Routinen."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7545,35 +7610,35 @@ msgstr ""
"Benutzerprofile neu laden zu müssen."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Erlaubt das Erstellen und Löschen von Indizes."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Erlaubt die Sperrung bestimmter Tabellen."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7581,63 +7646,63 @@ msgstr ""
"Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an "
"allen Datenbanken und Tabellen vornehmen darf."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Hat keinen Effekt in dieser MySQL-Version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Wird für die Replication-Slave-Systeme benötigt."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Erlaubt das Auslesen von Daten."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gewährt Zugang zur vollständigen Datenbankliste."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Erlaubt das Ausführen von 'SHOW CREATE VIEW'."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Erlaubt das Beenden des Servers."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7648,12 +7713,12 @@ msgstr ""
"Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Erlaubt das Erzeugen und Löschen Triggern"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Erlaubt das Verändern von gespeicherten Daten."
@@ -7666,142 +7731,142 @@ msgctxt "None privileges"
msgid "None"
msgstr "Kein(e)"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabellenspezifische Rechte"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "MySQL-Rechte werden auf Englisch angegeben."
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globale Rechte"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Datenbankspezifische Rechte"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globale Rechte"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Datenbankspezifische Rechte"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ressourcenbeschränkungen"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Der Wert 0 (null) entfernt die Beschränkung."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Anmelde-Informationen"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Passwort nicht verändert"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Es wurde kein Benutzer gefunden."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Der Benutzer %s existiert bereits!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Der Benutzer wurde hinzugefügt."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Die Rechte für %s wurden geändert."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Sie haben die Rechte für %s entfernt."
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Das Passwort für %s wurde geändert."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Lösche %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Lade die Benutzertabellen neu"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Die gewählten Benutzer wurden gelöscht."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Die Benutzerprofile wurden neu geladen."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Rechte ändern"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Entfernen"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Jeder"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Benutzerübersicht"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Neuen Benutzer hinzufügen"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Die ausgewählten Benutzer löschen"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Die gleichnamigen Datenbanken löschen."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-"
"Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, "
@@ -7809,93 +7874,93 @@ msgstr ""
"vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu "
"laden%s bevor Sie fortfahren."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Spaltenspezifische Rechte"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Rechte zu folgender Datenbank hinzufügen"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Rechte zu folgender Tabelle hinzufügen"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Anmelde-Information ändern / Benutzer kopieren"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... behalte den alten bei."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... lösche den alten von den Benutzertabellen."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Datenbank für Benutzer"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Kein(e)"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen "
"(username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Gewähre alle Rechte auf die Datenbank "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Benutzer mit Zugriff auf "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "datenbankspezifisch"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "Platzhalter"
@@ -9067,7 +9132,7 @@ msgstr "Wert für diese Sitzung"
msgid "Global value"
msgstr "Globaler Wert"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Download"
@@ -9107,55 +9172,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Unsichere Verbindung"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Konfigurationsspeicher"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Übersicht"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Ausgeblendete Nachrichten anzeigen (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Es sind keine Server konfiguriert"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Neuer Server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Voreingestellte Sprache"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "Der Benutzer soll entscheiden"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- kein -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Voreingestellter Server"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Zeilen-Ende"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Anzeige"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Laden"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin-Homepage"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Spenden"
@@ -9341,8 +9418,8 @@ msgstr ""
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
"Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder "
-"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
-"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
+"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %"
+"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format
@@ -9429,62 +9506,62 @@ msgstr "Die Tabelle %1$s wurde erfolgreich geändert"
msgid "Function"
msgstr "Funktion"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " Wegen seiner Länge ist dieses
Feld vielleicht nicht editierbar "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "BLOB-Referenz entfernen"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binär - nicht editierbar!"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Zu BLOB-Repository hochladen"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Als neuen Datensatz speichern "
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Als neue Zeile einfügen und Fehler ignorieren"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Zeige insert Abfrage"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "und dann"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "zurück"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "anschließend einen weiteren Datensatz einfügen"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Zurück zu dieser Seite"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "nächste Zeile bearbeiten"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten "
"beliebig bewegen"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Einfügen mit %s Zeilen fortfahren"
@@ -9641,7 +9718,7 @@ msgstr "Der Name des Primärschlüssels darf nur \"PRIMARY\" lauten."
msgid "Add to index %s column(s)"
msgstr "%s Spalten zum Index hinzufügen"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Die Spaltenanzahl muss größer als 0 sein."
@@ -9667,98 +9744,98 @@ msgstr "Tabelle %s wurde nach %s kopiert."
msgid "The table name is empty!"
msgstr "Der Tabellenname ist leer!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Tabelle sortieren nach"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(einmalig)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Verschiebe Tabelle nach (Datenbank.Tabellenname):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tabellenoptionen"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Tabelle umbenennen in"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Zur kopierten Tabelle wechseln"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Hilfsmittel"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Tabelle defragmentieren"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr ""
"Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert."
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Leeren des Tabellencaches (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Daten oder Tabelle löschen"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Tabelle leeren (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Tabelle löschen (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Partitions-Hilfsmittel"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partition %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analysieren"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Überprüfen"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimieren"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Neuaufbauen"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Reparieren"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Entferne die Partitionierung"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Prüfe referentielle Integrität:"
@@ -9766,39 +9843,39 @@ msgstr "Prüfe referentielle Integrität:"
msgid "Show tables"
msgstr "Tabellen anzeigen"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Speicherplatzverbrauch"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Verbrauch"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Zeilenstatistik"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Angaben"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statisch"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamisch"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Zeilenlänge"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Zeilengröße"
@@ -9879,52 +9956,52 @@ msgstr "kein(e)"
msgid "Column %s has been dropped"
msgstr "Spalte %s wurde gelöscht"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Ein Primärschlüssel wurde in %s erzeugt"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Ein Index wurde in %s erzeugt"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Weitere Aktionen anzeigen"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Beziehungsübersicht"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Tabellenstruktur analysieren"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Spalte hinzufügen"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "An das Ende der Tabelle"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "An den Anfang der Tabelle"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Nach %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Index über %s Spalten anlegen"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partitioniert"
@@ -9952,7 +10029,7 @@ msgstr "Tracking von %s.%s , Version %s ist aktiviert."
msgid "SQL statements executed."
msgstr "SQL Befehle ausgeführt."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9961,102 +10038,132 @@ msgstr ""
"Datenbank realisieren. Bitte stellen Sie sicher, dass Sie die dafür "
"benötigten Rechte besitzen."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
"Kommentieren Sie diese beiden Zeilen aus, wenn Sie diese nicht benötigen."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL Befehle exportiert."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Version %s Schnappschuss (SQL code)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Verfolge diese Datenbeschreibungsbefehle (DDL):"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Fehler sammeln"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Verfolge die Befehle"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Zeige %s mit Datum von %s bis %s und Benutzer %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Lösche die Verlaufsdaten für diese Tabelle"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Keine Datenbanken"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Datum"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "DDL Befehl"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "DML Befehl"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL Dump (Datei Download)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL Dump"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL Ausführung"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Export als %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Versionen anzeigen"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Version"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Tracking Mechanismus für %s.%s deaktivieren"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Jetzt deaktivieren"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Tracking mechanismus für %s.%s aktivieren"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Jetzt aktivieren"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Version %s von %s.%s erzeugen"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Verfolge diese Datenbeschreibungsbefehle (DDL):"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Erzeuge Version"
diff --git a/po/el.po b/po/el.po
index 9a39cb7abe..17af3dc6c6 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-05 11:15+0200\n"
"Last-Translator: Panagiotis Papazoglou \n"
"Language-Team: greek \n"
-"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Εμφάνιση όλων"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Αναζήτηση"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Αναζήτηση"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Εκτέλεση"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Όνομα κλειδιού"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Σχόλιο βάσης: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Σχόλια Πίνακα"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Σχόλια Πίνακα"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Στήλη"
@@ -149,11 +149,11 @@ msgstr "Στήλη"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Τύπος"
@@ -163,8 +163,8 @@ msgstr "Τύπος"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Κενό"
@@ -174,7 +174,7 @@ msgstr "Κενό"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Προεπιλογή"
@@ -197,39 +197,40 @@ msgstr "Σύνδεση με"
msgid "Comments"
msgstr "Σχόλια"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Όχι"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ναι"
@@ -241,8 +242,8 @@ msgstr "Εκτύπωση"
msgid "View dump (schema) of database"
msgstr "Εμφάνιση σχήματος της βάσης δεδομένων"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων."
@@ -268,78 +269,78 @@ msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s"
msgid "Database %s has been copied to %s"
msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Μετονομασία βάσης δεδομένων σε"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Εντολή"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Μετακίνηση βάσης δεδομένων σε"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Η βάση δεδομένων %s διεγράφη."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Διαγραφή της βάση δεδομένων (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Αντιγραφή βάσης δεδομένων σε"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Μόνο η δομή"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Δομή και δεδομένα"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Μόνο τα δεδομένα"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Προσθήκη %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Προσθήκη τιμής AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Προσθήκη περιορισμών"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Σύνθεση"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν "
"απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος"
@@ -356,17 +357,17 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Πίνακας"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Εγγραφές"
@@ -382,21 +383,21 @@ msgstr "σε χρήση"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Δημιουργία"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Τελευταία ενημέρωση"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "τελευταίος έλεγχος"
@@ -407,97 +408,90 @@ msgid_plural "%s tables"
msgstr[0] "%s Πίνακας"
msgstr[1] "%s Πίνακες"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Μετάβαση σε"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "εικονικός μάστορας"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Ταξινόμηση"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Αύξουσα"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Φθίνουσα"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Εμφάνιση"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Κριτήρια"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Εισαγωγή"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Και"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Διαγραφή"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ή"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Τροποποίηση"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Προσθήκη/Αφαίρεση Στηλών"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Ενημέρωση Ερωτήματος"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Χρήση Πινάκων"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Εντολή SQL στη βάση δεδομένων %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
@@ -538,7 +532,7 @@ msgstr[1] "%s αποτελέσματα στον πίνακα %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Περιήγηση"
@@ -547,14 +541,15 @@ msgstr "Περιήγηση"
msgid "Delete the matches for the %s table?"
msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Διαγραφή"
@@ -593,17 +588,17 @@ msgstr "Εσωτερικό πεδίο:"
msgid "No tables found in database"
msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Ο Πίνακας %s άδειασε"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Η προβολή %s διαγράφτηκε"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Ο Πίνακας %s διεγράφη"
@@ -616,14 +611,14 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη."
msgid "Tracking is not active."
msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
-"%sτεκμηρίωση%s."
+"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
+"sτεκμηρίωση%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -647,22 +642,22 @@ msgstr ""
"Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Με τους επιλεγμένους:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Επιλογή όλων"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Απεπιλογή όλων"
@@ -671,16 +666,16 @@ msgid "Check tables having overhead"
msgstr "Επιλογή πινάκων με περίσσεια"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Εξαγωγή"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Εμφάνιση για εκτύπωση"
@@ -692,28 +687,46 @@ msgstr "Άδειασμα"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Διαγραφή"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Έλεγχος πίνακα"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Βελτιστοποίηση Πίνακα"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Επιδιόρθωση πίνακα"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Ανάλυση Πίνακα"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Μετάβαση στον πίνακα"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Αντικατάσταση δεδομένων Πίνακα με το αρχείο"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Αντικατάσταση δεδομένων Πίνακα με το αρχείο"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Περιληπτικός πίνακας δεδομένων"
@@ -727,10 +740,10 @@ msgstr "Παρακολουθούμενοι πίνακες"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Βάση"
@@ -738,36 +751,36 @@ msgstr "Βάση"
msgid "Last version"
msgstr "Τελευταία έκδοση"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Δημιουργήθηκε"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Ενημερώθηκε"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Κατάσταση"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Ενέργεια"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "ενεργή"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "μη ενεργή"
@@ -775,11 +788,11 @@ msgstr "μη ενεργή"
msgid "Versions"
msgstr "Εκδόσεις"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Αναφορά παρακολούθησης"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Στιγμιότυπο δομής"
@@ -787,8 +800,8 @@ msgstr "Στιγμιότυπο δομής"
msgid "Untracked tables"
msgstr "Μη παρακολουθούμενοι πίνακες"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Παρακολούθηση πίνακα"
@@ -847,11 +860,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
-"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
+"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
+"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -920,6 +933,13 @@ msgstr ""
"σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός "
"και αν αυξήσετε τα χρονικά όρια της php."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -946,224 +966,242 @@ msgstr "Πατήστε για απεπιλογή"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Θέλετε να εκτελέσετε την εντολή "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Συμβάν διαγραφής"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Διαδικασία διαγραφής"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Διαγραφή δεδομένων παρακολούθησης"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Διαγραφή Πρωτεύοντος Κλειδιού/Περιεχομενου"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Αυτή η διαδικασία ίσως κρατήσει αρκετά. Θέλετε να συνεχίσετε;"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Πρόκειτε να ΑΠΕΝΕΡΓΟΠΟΙΉΣΕΤΕ μια Αποθήκη BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %s;"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Ελλειπής τιμή στο πεδίο !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Αυτό δεν είναι αριθμός!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Το όνομα του Συστήματος είναι κενό!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Το όνομα του χρήστη είναι κενό!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Ο Κωδικός Πρόσβασης είναι κενός!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Προσθήκη νέου Χρήστη"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Δημιουργία Χρήστη"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Επαναφόρτωση δικαιωμάτων"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Διαγραφή των επιλεγμένων χρηστών"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Κλείσιμο"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Άκυρο"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Φόρτωση"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Προώθηση Αιτήματος"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Σφάλμα στην Προώθηση του Αιτημάτος"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Διαγραφή Στήλης"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Προσθήκη Πρωτεύοντος Κλειδιού"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Εντάξει"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Μετονομασία βάσεων δεδομένων"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Επαναφόρτωση βάσεων δεδομένων"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Αντιγραφή βάσης δεδομένων"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Αλλαγή Συνόλου χαρακτήρων"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον μια στήλη"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Δημιουργία Πίνακα"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Αναζήτηση"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Απόκρυψη παραθύρου ερωτήματος SQL"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Προβολή παραθύρου ερωτήματος SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Εσωτερική Επεξεργασία"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Αποθήκευση"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Απόκρυψη"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Απόκρυψη κριτηρίων αναζήτησης"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Προβολή κριτηρίων αναζήτησης"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Παράληψη"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Επιλέξτε αναφερθέν κλειδί"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Επιλέξτε Μη Διακριτό Κλειδί"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Επιλέξτε στήλη για εμφάνιση"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Προσθήκη επιλογής για τη στήλη "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Δημιουργία Κωδικού Πρόσβασης"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Παραγωγή"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Αλλαγή Κωδικού Πρόσβασης"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Περισσότερα"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1173,254 +1211,260 @@ msgstr ""
"εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ". τελευταία έκδοση:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Μετάβαση στη βάση δεδομένων"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Ολοκληρώθηκε"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Προηγούμενο"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Επόμενο"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Σήμερα"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Ιανουαρίου"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Φεβρουαρίου"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Μαρτίου"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Απριλίου"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Μαΐου"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Ιουνίου"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Ιουλίου"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Αυγούστου"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Σεπτεμβρίου"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Οκτωβρίου"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Νοεμβρίου"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Δεκεμβρίου"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Ιαν"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Φεβ"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Μαρ"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Απρ"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Μάη"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Ιουν"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Ιουλ"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Αυγ"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Σεπ"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Οκτ"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Νοε"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Δεκ"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Κυριακή"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Δευτέρα"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Τρίτη"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Τετάρτη"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Πέμπτη"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Παρασκευή"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Σάββατο"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Κυρ"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Δευ"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Τρί"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Τετ"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Πέμ"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Παρ"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Σάβ"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Κυ"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Δε"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Τρ"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Τε"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Πε"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Πα"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Σα"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Ώρα"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Λεπτό"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Δευτερόλεπτο"
@@ -1475,33 +1519,33 @@ msgid "No index defined!"
msgstr "Δεν ορίστηκε ευρετήριο!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Ευρετήρια"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Μοναδικό"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Συμπιεσμένο"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Μοναδικότητα"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Σχόλιο"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Επεξεργασία"
@@ -1525,32 +1569,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Βάσεις Δεδομένων"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Λάθος"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "Επηρεάστηκε %1$d γραμμή."
msgstr[1] "Επηρεάστηκαν %1$d γραμμές."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "Διαγράφτηκε %1$d γραμμή."
msgstr[1] "Διαγράφτηκαν %1$d γραμμές."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1644,8 +1688,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
@@ -1799,19 +1843,19 @@ msgstr "Πίνακες"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Δεδομένα"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Σύνολο"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Περίσσεια"
@@ -1902,16 +1946,16 @@ msgstr ""
"σας."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Διακομιστής"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
@@ -1946,7 +1990,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Τεκμηρίωση"
@@ -2094,7 +2138,7 @@ msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Δομή"
@@ -2128,7 +2172,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Επιλογή από το φάκελο αποστολής του διακοιμίστή ιστού %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί"
@@ -2290,7 +2334,7 @@ msgstr "Επιτρέπεται στους χρήστες να προσαρμόσ
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Επαναφορά"
@@ -2420,7 +2464,7 @@ msgid "Compress on the fly"
msgstr "Άμεση συμπίεση"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Αρχείο ρυθμίσεων"
@@ -2550,7 +2594,7 @@ msgid "Character set of the file"
msgstr "Σύνολο χαρακτήρων αρχείου"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Μορφοποίηση"
@@ -2852,7 +2896,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Προσαρμογή εμφάνισης του πλαισίου πλοήγησης"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Διακομιστές"
@@ -3638,7 +3682,7 @@ msgstr "Αρχείο ρυθμίσεων SweKey"
msgid "Authentication method to use"
msgstr "Μέθοδος επικύρωσης για χρήση"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Τύπος επικύρωσης"
@@ -4165,9 +4209,9 @@ msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποι
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Κωδικός Πρόσβασης"
@@ -4191,8 +4235,8 @@ msgstr ""
"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Όνομα χρήστη"
@@ -4322,7 +4366,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Φιλοχρηστικές πολλαπλές δηλώσεις"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Έλεγχος για τελευταία έκδοση"
@@ -4478,7 +4522,7 @@ msgstr "Συμβάντα"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Όνομα"
@@ -4501,8 +4545,8 @@ msgid "Designer"
msgstr "Σχεδιαστής"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Δικαιώματα"
@@ -4514,7 +4558,7 @@ msgstr "Εργασίες"
msgid "Return type"
msgstr "Τύπος επιστροφής"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4535,23 +4579,23 @@ msgstr "Ο διακομιστής δεν αποκρίνεται"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Λεπτομέρειες..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Αλλαγή κωδικού πρόσβασης"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Χωρίς Κωδικό Πρόσβασης"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Επαναεισαγωγή"
@@ -4573,7 +4617,7 @@ msgid "Create"
msgstr "Δημιουργία"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Χωρίς Δικαιώματα"
@@ -4677,8 +4721,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@@ -4700,7 +4744,7 @@ msgstr "Συμπίεση"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Καμία"
@@ -4880,7 +4924,7 @@ msgstr "Ταξινόμηση ανά κλειδί"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Επιλογές"
@@ -4913,62 +4957,62 @@ msgstr "Εμφάνιση περιεχομένων BLOB"
msgid "Browser transformation"
msgstr "Μετατροπή περιηγητή"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Αντιγραφή"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Η Εγγραφή έχει διαγραφεί"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Τερματισμός"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "στην εντολή"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Εμφάνιση εγγραφών "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "συνολικά"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Αλλαγή"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Εμφάνιση διαγράμματος"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Δημιουργία προβολής"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Δεν βρέθηκε η σύνδεση"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Πληροφορίες έκδοσης"
@@ -5251,8 +5295,8 @@ msgid ""
"Documentation and further information about PBMS can be found on %sThe "
"PrimeBase Media Streaming home page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην "
-"%sΙστοσελίδα του PrimeBase Media Streaming%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %"
+"sΙστοσελίδα του PrimeBase Media Streaming%s."
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
msgid "Related Links"
@@ -5421,11 +5465,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην "
-"%sΙστοσελίδα του PrimeBase XT%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %"
+"sΙστοσελίδα του PrimeBase XT%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -5521,9 +5565,9 @@ msgstr "Διαθέσιμοι τύποι MIME"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Φιλοξενητής"
@@ -5534,7 +5578,7 @@ msgid "Generation Time"
msgstr "Χρόνος δημιουργίας"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Έκδοση Διακομιστή"
@@ -5894,7 +5938,32 @@ msgstr "Καμία"
msgid "Convert to Kana"
msgstr "Μετατροπή σε Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Πα"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Αποστολή"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Προσθήκη ευρετηρίου"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Χωρίς αλλαγή"
@@ -6207,8 +6276,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Όνομα χρήστη"
@@ -6229,7 +6298,7 @@ msgstr "Μεταβλητή"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Τιμή"
@@ -6249,34 +6318,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Οποιοσδήποτε Χρήστης"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Χρησιμοποιήστε το πεδίο κειμένου"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Οποιοδήποτε Σύστημα"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Τοπικό"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Αυτός ο διακομιστής"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Χρήση Οικείου Πίνακα"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6340,7 +6409,7 @@ msgstr "Χαρακτηριστικά"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Πρόσθετα"
@@ -6433,12 +6502,12 @@ msgid "Toggle scratchboard"
msgstr "(Απ)ενεργοποίηση πίνακα σχεδιασμού"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Άγνωστη γλώσσα: %1$s."
@@ -6511,7 +6580,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Καθάρισμα"
@@ -6543,10 +6612,6 @@ msgstr "Διαχωριστικό"
msgid " Show this query here again "
msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Αποστολή"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Μόνο ανάγνωση"
@@ -6555,7 +6620,7 @@ msgstr "Μόνο ανάγνωση"
msgid "Location of the text file"
msgstr "Τοποθεσία του αρχείου κειμένου"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή"
@@ -6606,19 +6671,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Αυτόματη επισύναψη οπισθοστίγματος στο τέλος του ερωτήματος!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Ανοιχτά εισαγωγικά"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Άγνωστο Αναγνωριστικό"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Άγνωστο σημείο στίξης"
@@ -6666,7 +6731,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Ευρετήριο"
@@ -6713,12 +6778,12 @@ msgid "As defined:"
msgstr "Όπως ορίστηκε:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Πρωτεύον"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Πλήρες κείμενο"
@@ -6732,7 +6797,7 @@ msgstr ""
"στον δημιουργό της για να μάθετε τι κάνει η μετατροπή %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Μηχανή αποθήκευσης"
@@ -6740,12 +6805,12 @@ msgstr "Μηχανή αποθήκευσης"
msgid "PARTITION definition"
msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Προσθήκη %s στήλης(ών)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο."
@@ -6931,73 +6996,73 @@ msgstr "Δεν βρέθηκαν αρχεία στο συμπιεσμένο αρ
msgid "Error in ZIP archive:"
msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Γενικές Ρυθμίσεις"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Σύνθεση σύνδεσης MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Ρυθμίσεις εμφάνισης"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Περισσότερες ρυθμίσεις"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Έκδοση πρωτοκόλλου"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Χρήστης"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Σύνολο χαρακτήρων MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Διακομιστής ιστού"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Έκδοση πελάτη MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Επέκταση PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Εμφάνιση πληροφοριών της PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Επίσημη σελίδα του phpMyAdmin"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Συνεισφορά"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Υποστήριξη"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Λίστα αλλαγών"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7010,7 +7075,7 @@ msgstr ""
"επιθέσεις και θα πρέπει να διορθώσετε το πρόβλημα εισάγωντας κωδικό "
"πρόσβασης για το χρήστη «root».."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7020,7 +7085,7 @@ msgstr ""
"επιλογή είναι ασύμβατη με το phpMyAdmin και ίσως προκαλέσει πρόβλημα με "
"μερικά δεδομένα!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7031,7 +7096,7 @@ msgstr ""
"μπορεί να χωρίσει συμβολοσειρές σωστά και ίσως προκύψουν μη αναμενόμενα "
"αποτελέσματα."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7043,7 +7108,7 @@ msgstr ""
"ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας "
"θα λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7053,13 +7118,13 @@ msgstr ""
"ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας "
"θα λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Το αρχείο ρυθμίσεων χρειάζεται τώρα μία μυστική φράση-κλειδί "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7069,17 +7134,17 @@ msgstr ""
"εγκατάστασης, υπάρχει ακόμα στο φάκελο phpMyAdmin. Πρέπει να τον διαγράψετε "
"μόλις ρυθμιστεί το phpMyAdmin."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά "
-"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε "
-"%sεδώ%s."
+"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %"
+"sεδώ%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7089,7 +7154,7 @@ msgstr ""
"σας. Μερικές λειτουργίες του phpMyAdmin δεν θα υφίσταται. Για παράδειγμα το "
"πλαίσιο πλοήγησης δεν θα ανανεώνεται αυτόματα."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7098,7 +7163,7 @@ msgstr ""
"Η έκδοση της βιβλιοθήκης PHP MySQL (%s) διαφέρει από την έκδοση του "
"διακομιστή MySQL (%s). Αυτό ίσως έχει μη προβλέψιμα αποτελέσματα."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7119,12 +7184,12 @@ msgstr "Φίλτρο"
msgid "filter tables by name"
msgstr "φιλτράρισμα πινάκων κατά όνομα"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Δημιουργία πίνακα"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Παρακαλώ επιλέξτε μία βάση δεδομένων"
@@ -7493,75 +7558,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Επιτρέπει τη δημιουργία νέων πινάκων."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Επιτρέπει τη δημιουργία νέων προβολών."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Επιτρέπει τη διαγραφή δεδομένων."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Επιτρέπει τη διαγραφή πινάκων."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7569,36 +7634,36 @@ msgstr ""
"πίνακες δικαιωμάτων."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει "
"ανά ώρα."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
"Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον "
"διακομιστή ανά ώρα."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7606,63 +7671,63 @@ msgstr ""
"Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να "
"εκετελέσει ανά ώρα."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
"Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών "
"αρχείων του."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
"Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι και δευτερεύοντες "
"διακομιστές."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Επιτρέπει την ανάγνωση δεδομένων."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7673,12 +7738,12 @@ msgstr ""
"ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Επιτρέπει την αλλαγή δεδομένων."
@@ -7691,142 +7756,142 @@ msgctxt "None privileges"
msgid "None"
msgstr "Κανένα"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Δικαιώματα πινάκων"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Γενικά δικαιώματα"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Δικαιώματα βάσης δεδομένων"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Διαχείριση"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Γενικά δικαιώματα"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Δικαιώματα βάσης δεδομένων"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Όρια πόρων"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Πληροφορίες Σύνδεσης"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Διατήρηση κωδικού πρόσβασης"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Δεν βρέθηκαν χρήστες."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Ο χρήστης %s υπάρχει ήδη!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Προσθέσατε ένα νέο χρήστη."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ανακαλέσατε τα δικαιώματα για %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Ο Κωδικός Πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Διαγραφή %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Επαναφόρτωση δικαιωμάτων"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Επεξεργασία Δικαιωμάτων"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Ανάκληση"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Οποιοδήποτε"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Περίληψη χρηστών"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Χορήγηση"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Προσθήκη νέου Χρήστη"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Διαγραφή των επιλεγμένων χρηστών"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
@@ -7834,50 +7899,50 @@ msgstr ""
"αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε "
"τα δικαιώματα%s πριν συνεχίσετε."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Δικαιώματα πεδίων"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να "
"χρησιμοποιηθούν"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... διατήρηση του παλιού χρήστη."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7885,43 +7950,43 @@ msgstr ""
" ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση "
"των δικαιωμάτων."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Βάση δεδομένων για χρήστη"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Καμία"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
"Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Χρήστες με πρόσβαση στη βάση «%s»"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "Γενικός"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Χρήστης Βάσης"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "μπαλαντέρ"
@@ -9118,7 +9183,7 @@ msgstr "Τιμή Συνεδρίας"
msgid "Global value"
msgstr "Προεπιλεγμένη τιμή"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Λήψη"
@@ -9159,55 +9224,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Μη ασφαλής σύνδεση"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Χώρος αποθήκευση ρυθμίσεων"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Επισκόπηση"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Εμφάνιση κρυφών μηνυμάτων (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Δεν υπάρχουν ρυθμισμένοι διακομιστές"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Νέος διακομιστής"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Προεπιλεγμένη γλώσσα"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "Δικαίωμα επιλογής στο χρήστη"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- καμία -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Προεπιλεγμένος διακομιστής"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Τέλος γραμμής"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Προβολή"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Φόρτωση"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Ιστοσελίδα phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Δωρεά"
@@ -9341,8 +9418,8 @@ msgid ""
"(currently %d)."
msgstr ""
"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα "
-"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
-"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
+"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%"
+"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
#: setup/lib/index.lib.php:262
#, php-format
@@ -9479,64 +9556,64 @@ msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς"
msgid "Function"
msgstr "Έλεγχος"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
" Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να "
"διορθωθεί "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Απομάκρυνση της Αναφοράς Αποθήκης BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Μεταφορά στην αποθήκη BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Εισαγωγή ως νέα εγγραφή"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Εμφάνιση ερωτήματος εισαγωγής SQL"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "και μετά"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Επιστροφή"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Εισαγωγή νέας εγγραφής"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Επιστροφή σε αυτή τη σελίδα"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Επεξεργασία επόμενης γραμμής"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για "
"μετακίνηση παντού"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Συνέχιση εισαγωγής με %s εγγραφές"
@@ -9695,7 +9772,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Προσθήκη στο ευρετήριο «%s» στήλης(ών)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Το πλήθος των στηλών δεν πρέπει να είναι μηδέν."
@@ -9721,97 +9798,97 @@ msgstr "Ο Πίνακας %s αντιγράφηκε στο %s."
msgid "The table name is empty!"
msgstr "Το όνομα του Πίνακα είναι κενό!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Αλλαγή ταξινόμησης Πίνακα κατά"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(μοναδικά)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Μεταφορά πίνακα σε (βάση.πίνακας):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Επιλογές πίνακα"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Μετονομασία πίνακα σε"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Αντιγραφή πίνακα σε (βάση.πίνακας):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Μεταφορά στον αντεγραμμένο πίνακα"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Συντήρηση Πίνακα"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Ανασυγκρότηση πίνακα"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Ο Πίνακας %s εκκαθαρίστηκε («FLUSH»)"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Εκκαθάριση («FLUSH») πίνακα"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Διαγραφή δεδομένων ή πίνακα"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Άδειασμα του πίνακα (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Διαγραφή της βάσης δεδομένων (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Συντήρηση κατάτμησης"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Κατάτμηση %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Ανάλυση"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Έλεγχος"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Βελτιστοποίηση"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Επανακατασκευή"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Επισκευή"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Απομάκρυνση κατάτμησης"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Έλεγχος ακεραιότητας συσχετίσεων:"
@@ -9819,39 +9896,39 @@ msgstr "Έλεγχος ακεραιότητας συσχετίσεων:"
msgid "Show tables"
msgstr "Εμφάνιση πινάκων"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Χρήση χώρου"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Χρήση"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Αποτελεσματικός"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Στατιστικά Εγγραφών"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Δηλώσεις"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "στατικό"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "δυναμικά"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Μέγεθος Γραμμής"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Μέγεθος Εγγραφής "
@@ -9932,52 +10009,52 @@ msgstr "Καμία"
msgid "Column %s has been dropped"
msgstr "Η στήλη %s διεγράφη"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Ένα πρωτεύον κλειδί προστέθηκε στο %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Ένα ευρετήριο προστέθηκε στο %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Προβολή περισσοτέρων δράσεων"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Εμφάνιση συσχετίσεων"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Προτεινόμενη δομή πίνακα"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Προσθήκη στήλης"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Στο τέλος του Πίνακα"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Στην αρχή του Πίνακα"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Μετά το %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Δημιουργία ευρετηρίου σε %s στήλες"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "κατατμήθηκε"
@@ -10005,7 +10082,7 @@ msgstr "Η παρακολούθηση του %s.%s , η έκδοση %s είνα
msgid "SQL statements executed."
msgstr "Οι δηλώσεις SQL εκτελέστηκαν."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -10013,102 +10090,132 @@ msgstr ""
"Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι "
"προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Συγκέντρωση σφαλμάτων"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Δηλώσεις παρακολούθησης"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Εμφάνιση %s με ημερομηνίες από %s έως %s από χρήστη %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Δεν υπάρχουν βάσεις δεδομένων"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Ημερομηνία"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Δήλωση ορισμού δεδομένων"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Δήλωση χειρισμού δεδομένων"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Κάδος SQL (λήψη αρχείου)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Κάδος SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
"Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Εκτέλεση SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Εξαγωγή ως %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Εμφάνιση εκδόσεων"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Έκδοση"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Απενεργοποιήση παρακολούθησης για το %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Απενεργοποιήση τώρα"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Ενεργοποίηση παρακολούθησης για το %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Ενεργοποιήση τώρα"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Δημιουργία έκδοσης %s του %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Δημιουργία έκδοσης"
diff --git a/po/en_GB.po b/po/en_GB.po
index e820934bd8..8d4601136a 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-02-10 16:24+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: english-gb \n"
-"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Show all"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Search"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Search"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Go"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Keyname"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s has been created."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Database comment: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Table comments"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Table comments"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Column"
@@ -149,11 +149,11 @@ msgstr "Column"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -163,8 +163,8 @@ msgstr "Type"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -174,7 +174,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Default"
@@ -197,39 +197,40 @@ msgstr "Links to"
msgid "Comments"
msgstr "Comments"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Yes"
@@ -241,8 +242,8 @@ msgstr "Print"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "No tables found in database."
@@ -268,78 +269,78 @@ msgstr "Database %s has been renamed to %s"
msgid "Database %s has been copied to %s"
msgstr "Database %s has been copied to %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Rename database to"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Command"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Remove database"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s has been dropped."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Drop the database (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copy database to"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Structure only"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structure and data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Data only"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE before copying"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Add %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Add AUTO_INCREMENT value"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Add constraints"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Switch to copied database"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edit or export relational schema"
@@ -356,17 +357,17 @@ msgstr "Edit or export relational schema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Table"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rows"
@@ -382,21 +383,21 @@ msgstr "in use"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Creation"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Last update"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Last check"
@@ -407,97 +408,90 @@ msgid_plural "%s tables"
msgstr[0] "%s table"
msgstr[1] "%s tables"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Your SQL query has been executed successfully"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Switch to"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "visual builder"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sort"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascending"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descending"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Show"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criteria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "And"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Or"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modify"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Add/Delete criteria rows"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Add/Delete columns"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Update Query"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Use Tables"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL query on database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Submit Query"
@@ -538,7 +532,7 @@ msgstr[1] "%s matches inside table %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Browse"
@@ -547,14 +541,15 @@ msgstr "Browse"
msgid "Delete the matches for the %s table?"
msgstr "Delete the matches for the %s table?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Delete"
@@ -593,17 +588,17 @@ msgstr "Inside column:"
msgid "No tables found in database"
msgstr "No tables found in database."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Table %s has been emptied"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "View %s has been dropped"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Table %s has been dropped"
@@ -616,14 +611,14 @@ msgstr "Tracking is active."
msgid "Tracking is not active."
msgstr "Tracking is not active."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -646,22 +641,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Check All"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Uncheck All"
@@ -670,16 +665,16 @@ msgid "Check tables having overhead"
msgstr "Check tables having overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Print view"
@@ -691,28 +686,46 @@ msgstr "Empty"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Drop"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Check table"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimise table"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Repair table"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyse table"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Go to table"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Dictionary"
@@ -726,10 +739,10 @@ msgstr "Tracked tables"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Database"
@@ -737,36 +750,36 @@ msgstr "Database"
msgid "Last version"
msgstr "Last version"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Created"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Updated"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Action"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Delete tracking data for this table"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "active"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "not active"
@@ -774,11 +787,11 @@ msgstr "not active"
msgid "Versions"
msgstr "Versions"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Tracking report"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Structure snapshot"
@@ -786,8 +799,8 @@ msgstr "Structure snapshot"
msgid "Untracked tables"
msgstr "Untracked tables"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Track table"
@@ -845,11 +858,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -915,6 +928,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Your SQL query has been executed successfully"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -939,223 +959,241 @@ msgstr "Click to unselect"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Do you really want to "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "You are about to DESTROY a complete database!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "You are about to DESTROY a complete database!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Dropping Event"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Dropping Procedure"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Deleting tracking data"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Dropping Primary Key/Index"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "This operation could take a long time. Proceed anyway?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "You are about to DISABLE a BLOB Repository!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Are you sure you want to disable all BLOB references for database %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Missing value in the form!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "This is not a number!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "The host name is empty!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "The user name is empty!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "The password is empty!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "The passwords aren't the same!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Add a New User"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Create User"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Reloading Privileges"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Removing Selected Users"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Close"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Cancel"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Loading"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Processing Request"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Error in Processing Request"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Dropping Column"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Adding Primary Key"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Renaming Databases"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Reload Database"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Copying Database"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Changing Charset"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Table must have at least one column"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Create Table"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Searching"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Hide query box"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Show query box"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Inline Edit"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Save"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Hide"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Hide search criteria"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Show search criteria"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Select referenced key"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Select Foreign Key"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Choose column to display"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Add an option for column "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Generate password"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generate"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Change Password"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "More"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1165,254 +1203,260 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", latest stable version:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Jump to database"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Done"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Prev"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Next"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Today"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "January"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "February"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "March"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "April"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "May"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "June"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "July"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "August"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "September"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "October"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "November"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Sunday"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Monday"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Tuesday"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Wednesday"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Thursday"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Friday"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Saturday"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Tu"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "We"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Th"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Wk"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Hour"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Second"
@@ -1466,33 +1510,33 @@ msgid "No index defined!"
msgstr "No index defined!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indexes"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unique"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Packed"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Comment"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edit"
@@ -1516,32 +1560,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databases"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Error"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d row affected."
msgstr[1] "%1$d rows affected."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d row deleted."
msgstr[1] "%1$d rows deleted."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1634,11 +1678,11 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1784,19 +1828,19 @@ msgstr "Tables"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -1885,16 +1929,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Invalid authentication method set in configuration:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "You should upgrade to %s %s or later."
@@ -1929,7 +1973,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentation"
@@ -2077,7 +2121,7 @@ msgstr "The %s functionality is affected by a known bug, see %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Structure"
@@ -2111,7 +2155,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Select from the web server upload directory %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "The directory you set for upload work cannot be reached"
@@ -2269,7 +2313,7 @@ msgstr "Allow users to customise this value"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Reset"
@@ -2396,7 +2440,7 @@ msgid "Compress on the fly"
msgstr "Compress on the fly"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Configuration file"
@@ -2525,7 +2569,7 @@ msgid "Character set of the file"
msgstr "Character set of the file"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2826,7 +2870,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Customise appearance of the navigation frame"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servers"
@@ -3593,7 +3637,7 @@ msgstr "SweKey config file"
msgid "Authentication method to use"
msgstr "Authentication method to use"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Authentication type"
@@ -4104,9 +4148,9 @@ msgstr "Requires SQL Validator to be enabled"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Password"
@@ -4130,8 +4174,8 @@ msgstr ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Username"
@@ -4257,7 +4301,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Verbose multiple statements"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Check for latest version"
@@ -4406,7 +4450,7 @@ msgstr "Events"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Name"
@@ -4429,8 +4473,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privileges"
@@ -4442,7 +4486,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Return type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4463,23 +4507,23 @@ msgstr "The server is not responding"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Details..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Change password"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "No Password"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Re-type"
@@ -4501,7 +4545,7 @@ msgid "Create"
msgstr "Create"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "No Privileges"
@@ -4605,12 +4649,12 @@ msgstr ", @TABLE@ will become the table name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4627,7 +4671,7 @@ msgstr "Compression:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "None"
@@ -4803,7 +4847,7 @@ msgstr "Sort by key"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Options"
@@ -4836,62 +4880,62 @@ msgstr "Show BLOB contents"
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Copy"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "The row has been deleted"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Change"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Display chart"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Create view"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link not found"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Version information"
@@ -5332,11 +5376,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -5432,9 +5476,9 @@ msgstr "Display MIME types"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5445,7 +5489,7 @@ msgid "Generation Time"
msgstr "Generation Time"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Server version"
@@ -5803,7 +5847,32 @@ msgstr "None"
msgid "Convert to Kana"
msgstr "Convert to Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Fr"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Submit"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Add index"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "No change"
@@ -6111,8 +6180,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "User name"
@@ -6133,7 +6202,7 @@ msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Value"
@@ -6153,34 +6222,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Add slave replication user"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Any user"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Use text field"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Any host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "This Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6244,7 +6313,7 @@ msgstr "Attributes"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6337,12 +6406,12 @@ msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unknown language: %1$s."
@@ -6415,7 +6484,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Run SQL query/queries on database %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Clear"
@@ -6447,10 +6516,6 @@ msgstr "Delimiter"
msgid " Show this query here again "
msgstr " Show this query here again "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Submit"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "View only"
@@ -6459,7 +6524,7 @@ msgstr "View only"
msgid "Location of the text file"
msgstr "Location of the text file"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web server upload directory"
@@ -6509,19 +6574,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Automatically appended backtick to the end of query!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Unclosed quote"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Invalid Identifer"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
@@ -6569,7 +6634,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6616,12 +6681,12 @@ msgid "As defined:"
msgstr "As defined:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primary"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -6635,7 +6700,7 @@ msgstr ""
"author what %s does."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Storage Engine"
@@ -6643,12 +6708,12 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr "PARTITION definition"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Add %s column(s)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "You have to add at least one column."
@@ -6829,73 +6894,73 @@ msgstr "No files found inside ZIP archive!"
msgid "Error in ZIP archive:"
msgstr "Error in ZIP archive:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "General Settings"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL connection collation"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Appearance Settings"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "More settings"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protocol version"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "User"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL charset"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Web server"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL client version"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP extension"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Show PHP information"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Official Homepage"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Contribute"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Get support"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "List of changes"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6907,7 +6972,7 @@ msgstr ""
"running with this default, is open to intrusion, and you really should fix "
"this security hole by setting a password for user 'root'."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6917,7 +6982,7 @@ msgstr ""
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6927,7 +6992,7 @@ msgstr ""
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6939,7 +7004,7 @@ msgstr ""
"validity configured in phpMyAdmin, because of this, your login will expire "
"sooner than configured in phpMyAdmin."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -6947,12 +7012,12 @@ msgstr ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"The configuration file now needs a secret passphrase (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -6962,7 +7027,7 @@ msgstr ""
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -6971,7 +7036,7 @@ msgstr ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -6981,7 +7046,7 @@ msgstr ""
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -6990,7 +7055,7 @@ msgstr ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behaviour."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7011,12 +7076,12 @@ msgstr "Filter"
msgid "filter tables by name"
msgstr "filter tables by name"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Create table"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Please select a database"
@@ -7381,107 +7446,107 @@ msgid "Includes all privileges except GRANT."
msgstr "Includes all privileges except GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Allows altering the structure of existing tables."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Allows altering and dropping stored routines."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Allows creating new databases and tables."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Allows creating stored routines."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Allows creating new tables."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Allows creating temporary tables."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Allows creating, dropping and renaming user accounts."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Allows creating new views."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Allows deleting data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Allows dropping databases and tables."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Allows dropping tables."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Allows to set up events for the event scheduler"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Allows executing stored routines."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Allows importing data from and exporting data into files."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Allows inserting and replacing data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Allows locking tables for the current thread."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7489,58 +7554,58 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Allows viewing processes of all users"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Has no effect in this MySQL version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Needed for the replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Allows reading data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gives access to the complete list of databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Allows performing SHOW CREATE VIEW queries."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Allows shutting down the server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7551,12 +7616,12 @@ msgstr ""
"killing threads of other users."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Allows creating and dropping triggers"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Allows changing data."
@@ -7569,190 +7634,190 @@ msgctxt "None privileges"
msgid "None"
msgstr "None"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Table-specific privileges"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Note: MySQL privilege names are expressed in English "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Global privileges"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Database-specific privileges"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Global privileges"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Database-specific privileges"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resource limits"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Login Information"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Do not change the password"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "No user found."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "The user %s already exists!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "You have added a new user."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "The password for %s was changed successfully."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Deleting %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "No users selected for deleting!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Reloading the privileges"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "The privileges were reloaded successfully."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Edit Privileges"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revoke"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Any"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "User overview"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Add a new User"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Remove selected users"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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 uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Column-specific privileges"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Add privileges on the following database"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Add privileges on the following table"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Change Login Information / Copy User"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Create a new user with the same privileges and ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... keep the old one."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... delete the old one from the user tables."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7760,42 +7825,42 @@ msgstr ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Database for user"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "None"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Create database with same name and grant all privileges"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Grant all privileges on wildcard name (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Grant all privileges on database "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "database-specific"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "wildcard"
@@ -8929,7 +8994,7 @@ msgstr "Session value"
msgid "Global value"
msgstr "Global value"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Download"
@@ -8968,55 +9033,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Insecure connection"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Configuration storage"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Overview"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Show hidden messages (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "There are no configured servers"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "New server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Default language"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "let the user choose"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- none -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Default server"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "End of line"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Display"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Load"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin homepage"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Donate"
@@ -9277,61 +9354,61 @@ msgstr "Table %1$s has been altered successfully"
msgid "Function"
msgstr "Function"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " Because of its length,
this column might not be editable "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Remove BLOB Repository Reference"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binary - do not edit"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Insert as new row"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Insert as new row and ignore errors"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Show insert query"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "and then"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Go back to previous page"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Insert another new row"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Go back to this page"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Edit next row"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Continue insertion with %s rows"
@@ -9487,7 +9564,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Add to index %s column(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
@@ -9513,97 +9590,97 @@ msgstr "Table %s has been copied to %s."
msgid "The table name is empty!"
msgstr "The table name is empty!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Alter table order by"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singly)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Move table to (database.table):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Table options"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Rename table to"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copy table to (database.table):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Switch to copied table"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Table maintenance"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragment table"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Table %s has been flushed"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Flush the table (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Delete data or table"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Empty the table (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Delete the table (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Partition maintenance"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partition %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analyse"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Check"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimise"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Rebuild"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Repair"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Remove partitioning"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Check referential integrity:"
@@ -9611,39 +9688,39 @@ msgstr "Check referential integrity:"
msgid "Show tables"
msgstr "Show tables"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Space usage"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Usage"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effective"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Row Statistics"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Statements"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "static"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamic"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Row length"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Row size "
@@ -9722,52 +9799,52 @@ msgstr "None"
msgid "Column %s has been dropped"
msgstr "Column %s has been dropped"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "A primary key has been added on %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "An index has been added on %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Show more actions"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relation view"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Propose table structure"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Add column"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "At End of Table"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "At Beginning of Table"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "After %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Create an index on %s columns"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partitioned"
@@ -9795,7 +9872,7 @@ msgstr "Tracking for %s.%s , version %s is activated."
msgid "SQL statements executed."
msgstr "SQL statements executed."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9803,101 +9880,131 @@ msgstr ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Comment out these two lines if you do not need them."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL statements exported. Please copy the dump or execute it."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Version %s snapshot (SQL code)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Track these data definition statements:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Gather errors"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Track these data manipulation statements:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Tracking statements"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Show %s with dates from %s to %s by user %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Delete tracking data for this table"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "No databases"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Date"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Data definition statement"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Data manipulation statement"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL dump (file download)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL dump"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "This option will replace your table and contained data."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL execution"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Export as %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Show versions"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Version"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Deactivate tracking for %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Deactivate now"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Activate tracking for %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Activate now"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Create version %s of %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Track these data definition statements:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Track these data manipulation statements:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Create version"
diff --git a/po/es.po b/po/es.po
index 063f1543bf..abcbb371a4 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-02 11:10+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
-"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Mostrar todo"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Buscar"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Buscar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Continuar"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nombre de la clave"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "La base de datos %1$s ha sido creada."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentario de la base de datos: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Comentarios de la tabla"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Comentarios de la tabla"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Columna"
@@ -149,11 +149,11 @@ msgstr "Columna"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -163,8 +163,8 @@ msgstr "Tipo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulo"
@@ -174,7 +174,7 @@ msgstr "Nulo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Predeterminado"
@@ -197,39 +197,40 @@ msgstr "Enlaces a"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Sí"
@@ -241,8 +242,8 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver el volcado (esquema) de la base de datos"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "No se han encontrado tablas en la base de datos."
@@ -268,78 +269,78 @@ msgstr "La base de datos %s ha sido renombrada a %s"
msgid "Database %s has been copied to %s"
msgstr "La base de datos %s ha sido copiada a %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Renombrar la base de datos a"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Comando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Eliminar base de datos"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "La base de datos %s ha sido eliminada."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Eliminar la base de datos (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar la base de datos a"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Únicamente la estructura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estructura y datos"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Solamente datos"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREAR BASE DE DATOS antes de copiar"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Añada %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Añadir el valor AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Añadir restricciones"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Seleccionar la base de datos copiada"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Cotejamiento"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. "
"Para saber por qué haz clic %saquí%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editar o exportar esquema relacional"
@@ -356,17 +357,17 @@ msgstr "Editar o exportar esquema relacional"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabla"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Filas"
@@ -382,21 +383,21 @@ msgstr "en uso"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Creación"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Última actualización"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Última revisión"
@@ -409,97 +410,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabla"
msgstr[1] "%s tablas"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Su consulta se ejecutó con éxito"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Debe elegir al menos una columna para mostrar"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Cambiar a"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "editor visual"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Ordenar"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascendente"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criterio"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Insertar"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "y luego"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Borrar"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "O"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modificar"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Añadir/borrar filas de criterio"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Añadir/borrar columnas"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Modificar la consulta"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Usar tablas"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Consulta a la base de datos %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Ejecutar la consulta"
@@ -542,7 +536,7 @@ msgstr[1] "%s resultados en la tabla %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Examinar"
@@ -551,14 +545,15 @@ msgstr "Examinar"
msgid "Delete the matches for the %s table?"
msgstr "¿Eliminar las coincidencias para la tabla %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Borrar"
@@ -597,17 +592,17 @@ msgstr "Dentro de la columna:"
msgid "No tables found in database"
msgstr "No se han encontrado tablas en la base de datos."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Se ha vaciado la tabla %s"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Se descartó el modo de visualización %s"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Se ha eliminado la tabla %s"
@@ -620,14 +615,14 @@ msgstr "El seguimiento está activo."
msgid "Tracking is not active."
msgstr "El seguimiento no está activo."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta vista tiene al menos este número de filas. Por favor refiérase a la "
-"%sdocumentation%s."
+"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
+"sdocumentation%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -651,22 +646,22 @@ msgstr ""
"%s es el motor de almacenamiento predeterminado en este servidor MySQL."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Para los elementos que están marcados:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Marcar todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desmarcar todos"
@@ -675,16 +670,16 @@ msgid "Check tables having overhead"
msgstr "Marcar las tablas con residuo a depurar"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Vista de impresión"
@@ -696,28 +691,46 @@ msgstr "Vaciar"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Eliminar"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Revisar la tabla"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizar la tabla"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparar la tabla"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizar la tabla"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Ir a la tabla"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Reemplazar los datos de la tabla con los del archivo"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Reemplazar los datos de la tabla con los del archivo"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Diccionario de datos"
@@ -731,10 +744,10 @@ msgstr "Tablas con seguimiento"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Base de datos"
@@ -742,36 +755,36 @@ msgstr "Base de datos"
msgid "Last version"
msgstr "Última versión"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Creado/a"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Actualizado"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Estado actual"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Acción"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Borrar los datos de seguimiento para esta tabla"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "activo/a"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "no activo/a"
@@ -779,11 +792,11 @@ msgstr "no activo/a"
msgid "Versions"
msgstr "Versiones"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Informe de seguimiento"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Instantánea de la estructura"
@@ -791,8 +804,8 @@ msgstr "Instantánea de la estructura"
msgid "Untracked tables"
msgstr "Tablas sin seguimiento"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Hacer seguimiento a la tabla"
@@ -851,8 +864,8 @@ msgstr "El volcado ha sido guardado al archivo %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sla documentation%s para hallar modos de superar esta "
@@ -926,6 +939,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Su consulta se ejecutó con éxito"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -950,225 +970,243 @@ msgstr "Clic para deseleccionar"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Realmente desea "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "¡Está a punto de DESTRUIR una base de datos completa!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "¡Está a punto de DESTRUIR una base de datos completa!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "¡Está a punto de DESTRUIR una base de datos completa!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Eliminando el evento"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Eliminando procedimiento"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Borrando los datos de seguimiento"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Borrando Claves Primarias/Índice"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Esta operación podría llevar algún tiempo. ¿Proceder de todas formas?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "¡Está a punto de DESHABILITAR un repositorio de BLOBs!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Está seguro que quiere deshabilitar todas las referencias BLOB para la base "
"de datos %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "¡Falta un valor en el formulario!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "¡Ésto no es un número!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "¡El nombre del servidor está vacío!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "¡El nombre de usuario está vacío!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "¡La contraseña está vacía!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "¡Las contraseñas no coinciden!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Agregar un nuevo usuario"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Crear usuario"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Recargando Privilegios"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Eliminando los usuarios seleccionados"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Cerrar"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Cargando"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Procesando Petición"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Error al Procesar la Petición"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Eliminando Columna"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Añadiendo Clave Primaria"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Renombrando Bases de Datos"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Recargar Base de Datos"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Copiando Base de Datos"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Cambiando el Juego de caracteres"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "La tabla debe tener al menos una columna"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Crear tabla"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Buscando"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Ocultar ventana de consultas SQL"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Mostrar ventana de consultas SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Editar en línea"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Guardar"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ocultar"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Ocultar criterio de búsqueda"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Mostrar criterio de búsqueda"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Seleccione la clave referenciada"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Seleccione la clave foránea"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Por favor seleccione la clave primaria o una clave única"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Elegir la columna a mostrar"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Añadir una opción para la columna"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Generar contraseña"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generar"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Cambar contraseña"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Más"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1178,254 +1216,260 @@ msgstr ""
"la obtenga. La versión más reciente es %s, y existe desde el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", versión estable más reciente:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Saltar a la base de datos"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Terminado"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Previo"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Siguiente"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Hoy"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Enero"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Febrero"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Marzo"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Abril"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mayo"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Junio"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Julio"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Agosto"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Septiembre"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Octubre"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Noviembre"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Diciembre"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Lunes"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Martes"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Miércoles"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Jueves"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Viernes"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Ju"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Vi"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Segundo"
@@ -1480,33 +1524,33 @@ msgid "No index defined!"
msgstr "¡No se ha definido ningún índice!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Índices"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Único"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Empaquetado"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinalidad"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Comentario"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
@@ -1530,32 +1574,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Error"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d fila afectada."
msgstr[1] "%1$d filas afectadas."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d fila eliminada."
msgstr[1] "%1$d filas eliminadas."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1650,8 +1694,8 @@ msgstr "Bienvenido a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no haya creado un archivo de "
"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
@@ -1806,19 +1850,19 @@ msgstr "Tablas"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Datos"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Residuo a depurar"
@@ -1909,16 +1953,16 @@ msgstr ""
"configuración."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Servidor"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticación no válido definido en la configuración:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Usted debería actualizar su %s a la versión %s o más reciente."
@@ -1953,7 +1997,7 @@ msgstr "es"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentación"
@@ -2101,7 +2145,7 @@ msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Estructura"
@@ -2136,7 +2180,7 @@ msgstr ""
"Seleccionar directorio en el servidor web para subir los archivos %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"No se puede acceder al directorio que seleccionó para subir los archivos"
@@ -2300,7 +2344,7 @@ msgstr "Permitir a los usuarios personalizar este valor"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Reiniciar"
@@ -2434,7 +2478,7 @@ msgid "Compress on the fly"
msgstr "Comprimir sobre la marcha"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Archivo de configuración"
@@ -2563,7 +2607,7 @@ msgid "Character set of the file"
msgstr "Conjunto de caracteres del archivo"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formato"
@@ -2873,7 +2917,7 @@ msgstr ""
"navegación"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servidores"
@@ -3657,7 +3701,7 @@ msgstr "Archivo de configuración SweKey"
msgid "Authentication method to use"
msgstr "Método de autenticación a usar"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Tipo de autenticación"
@@ -4182,9 +4226,9 @@ msgstr "Requiere que el Validador SQL esté habilitado"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Contraseña"
@@ -4208,8 +4252,8 @@ msgstr ""
"Si se posee un nombre de usuario propio, especifícalo aquí (valor por "
"defecto: [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Nombre de usuario"
@@ -4339,7 +4383,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Opción detallada para múltiples sentencias"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Buscar si existe una versión más reciente"
@@ -4499,7 +4543,7 @@ msgstr "Eventos"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nombre"
@@ -4522,8 +4566,8 @@ msgid "Designer"
msgstr "Diseñador"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegios"
@@ -4535,7 +4579,7 @@ msgstr "Rutinas"
msgid "Return type"
msgstr "Muestre el tipo"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4559,23 +4603,23 @@ msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(o el socket del servidor MySQL local no está configurado correctamente)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detalles..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Cambio de contraseña"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Sin contraseña"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Debe volver a escribir"
@@ -4597,7 +4641,7 @@ msgid "Create"
msgstr "Crear"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Sin privilegios"
@@ -4702,8 +4746,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar "
"cadenas para formatear el tiempo. Además sucederán las siguientes "
@@ -4725,7 +4769,7 @@ msgstr "Compresión:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Ninguna"
@@ -4904,7 +4948,7 @@ msgstr "Ordenar según la clave"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opciones"
@@ -4939,62 +4983,62 @@ msgstr "Mostrar contenido BLOB"
msgid "Browser transformation"
msgstr "Transformación del navegador"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Copiar"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "La fila se ha borrado"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Matar el proceso"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "en la consulta"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Mostrando registros"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tardó %01.4f seg"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Cambiar"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operaciones sobre los resultados de la consulta"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Previsualización para imprimir (documento completo)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Mostrar gráfico"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Crear vista"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "No se encontró el enlace"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Acerca de esta versión"
@@ -5454,8 +5498,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Se puede encontrar documentación y más información sobre PBXT en la %spágina "
"inicial de PrimeBase XT%s."
@@ -5555,9 +5599,9 @@ msgstr "Tipos MIME disponibles"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Servidor"
@@ -5568,7 +5612,7 @@ msgid "Generation Time"
msgstr "Tiempo de generación"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versión del servidor"
@@ -5938,7 +5982,32 @@ msgstr "Ninguno"
msgid "Convert to Kana"
msgstr "Convertir a Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Vi"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Enviar"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Agregar índice"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Sin cambios"
@@ -6248,8 +6317,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nombre de usuario"
@@ -6270,7 +6339,7 @@ msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valor"
@@ -6290,34 +6359,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Agregar un usuario de replicación esclavo"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Cualquier usuario"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Use el campo de texto"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Cualquier servidor"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Este Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Usar la tabla Anfitrión (Host)"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6381,7 +6450,7 @@ msgstr "Atributos"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6474,12 +6543,12 @@ msgid "Toggle scratchboard"
msgstr "cambiar el estado del scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Idioma desconocido: %1$s."
@@ -6553,7 +6622,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Limpiar"
@@ -6585,10 +6654,6 @@ msgstr "Delimitador"
msgid " Show this query here again "
msgstr " Mostrar esta consulta otra vez "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Enviar"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Solamente ver"
@@ -6597,7 +6662,7 @@ msgstr "Solamente ver"
msgid "Location of the text file"
msgstr "Localización del archivo de texto"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "directorio en el servidor web para subir los archivos"
@@ -6650,19 +6715,19 @@ msgstr "INICIO DEL VOLCADO"
msgid "END RAW"
msgstr "FIN DEL VOLCADO"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Agregar comilla invertida al final de la consulta automáticamente"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Comillas sin cerrar"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "El identificador no es válido"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Signo de puntuación desconocido"
@@ -6710,7 +6775,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Índice"
@@ -6760,12 +6825,12 @@ msgid "As defined:"
msgstr "Personalizado:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primaria"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Texto completo"
@@ -6779,7 +6844,7 @@ msgstr ""
"pregunte al autor lo que %s hace."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Motor de almacenamiento"
@@ -6787,12 +6852,12 @@ msgstr "Motor de almacenamiento"
msgid "PARTITION definition"
msgstr "definición de la PARTICIÓN"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Agregar %s columna(s)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Debe agregar al menos una columna."
@@ -6978,73 +7043,73 @@ msgstr "¡No se hallaron archivos dentro del archivo ZIP!"
msgid "Error in ZIP archive:"
msgstr "Error en el archivo ZIP:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Configuraciones generales"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Cotejamiento de las conexiones MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Configuraciones de apariencia"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Más configuraciones"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Versión del protocolo"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Usuario"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Juegos de caracteres de MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Servidor web"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Versión del cliente"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "extensión PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Mostrar la información de PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Página oficial de phpMyAdmin"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Contribuir"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Obtener soporte"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Lista de cambios"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7059,7 +7124,7 @@ msgstr ""
"contraseña a root@localhost. Deberá escribir la misma contraseña en config."
"inc.php de phpMyAdmin."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7069,7 +7134,7 @@ msgstr ""
"opción es incompatible con phpMyAdmin y podría causar la pérdida de algunos "
"datos!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7079,7 +7144,7 @@ msgstr ""
"tipografía multibyte. phpMyAdmin no puede cortar correctamente las cadenas "
"de caracteres sin la extensión mbstring y podría dar resultados inesperados."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7091,7 +7156,7 @@ msgstr ""
"de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes "
"de lo configurado en phpMyAdmin."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7100,13 +7165,13 @@ msgstr ""
"de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes "
"de lo configurado en phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"El archivo de configuración ahora necesita una frase secreta "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7116,17 +7181,17 @@ msgstr ""
"aún existe en el directorio phpMyAdmin. Deberías eliminarlo una vez que "
"phpMyAdmin fue configurado."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"El almacenamiento de configuración phpMyAdmin no está completamente "
-"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
-"%sPulsa aquí para averiguar por qué%s."
+"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
+"sPulsa aquí para averiguar por qué%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7136,7 +7201,7 @@ msgstr ""
"en el mismo. Faltará alguna funcionalidad phpMyAdmin; por ejemplo, el marco "
"de navegación no actualizará automáticamente."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7145,7 +7210,7 @@ msgstr ""
"Su versión de librería PHP MySQL %s es distinta de aquella de su versión de "
"servidor MySQL %s. Esto puede ocasionar un comportamiento impredecible."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7166,12 +7231,12 @@ msgstr "Filtrar"
msgid "filter tables by name"
msgstr "filtar tablas por nombre"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Crear tabla"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Seleccionar una base de datos"
@@ -7545,75 +7610,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Incluye todos los privilegios excepto GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permite alterar la estructura de las tablas existentes."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Permite alterar y eliminar las rutinas almacenadas."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permite crear nuevas bases de datos y tablas."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Permite crear el almacenamiento de rutinas."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permite la creación de tablas nuevas."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permite la creación de tablas temporales."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Permite crear nuevas vistas."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permite borrar datos."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permite eliminar bases de datos y tablas."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permite eliminar tablas."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Permite organizar los eventos para el gestor de eventos"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Permite ejecutar las rutinas almacenadas."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Permite importar y exportar datos de y hacia archivos."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7621,35 +7686,35 @@ msgstr ""
"de privilegios."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permite crear y eliminar índices."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permite insertar y reemplazar datos."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Permite poner candados a las tablas para el proceso actual."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7657,61 +7722,61 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Permite ver los procesos de todos los usuarios"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "No tiene efecto en esta versión de MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Necesario para los esclavos de replicación."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permite leer los datos."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Concede acceso a la lista completa de bases de datos."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Permite llevar a cabo las consultas SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permite desconectar el servidor."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7723,12 +7788,12 @@ msgstr ""
"usuarios."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Permite crear y eliminar un disparador"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permite cambiar los datos."
@@ -7741,146 +7806,146 @@ msgctxt "None privileges"
msgid "None"
msgstr "Ninguno"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilegios específicos para la tabla"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
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:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Privilegios globales"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilegios específicos para la base de datos"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administración"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Privilegios globales"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilegios específicos para la base de datos"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Límites de recursos"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Información de la cuenta"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "No cambiar la contraseña"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Usuario(s) no encontrado(s)."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "¡El usuario %s ya existe!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Ha agregado un nuevo usuario."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ha actualizado los privilegios para %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ha revocado los privilegios para %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "La contraseña para %s se cambió exitosamente."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Borrando %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "¡No se han seleccionado usuarios para eliminar!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Cargando los privilegios nuevamente"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Los usuarios seleccionados fueron borrados exitosamente."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Los privilegios fueron cargados nuevamente de manera exitosa."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Editar los privilegios"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revocar"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "cualquiera"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Vista global de usuarios"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Conceder"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Agregar un nuevo usuario"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Eliminar a los usuarios seleccionados"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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 "
@@ -7888,52 +7953,52 @@ msgstr ""
"manuales en él. En este caso, nuevamente deberá %scargar la página de "
"privilegios%s antes de continuar."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "El usuario que seleccionó no se halló en la tabla de privilegios."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilegios específicos para la columna"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Añadir privilegios a esta base de datos"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
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:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Cambiar la información de la cuenta / Copiar el usuario"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Crear un nuevo usuario con los mismos privilegios y..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "...mantener el anterior."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ...borrar el viejo de las tablas de usuario."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7941,44 +8006,44 @@ msgstr ""
" ...borrar el viejo de las tablas de usuario y luego volver a cargar los "
"privilegios."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Base de datos para el usuario"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Ninguna"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Otorgar todos los privilegios para la base de datos "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Usuarios con acceso a "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "específico para la base de datos"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "comodín"
@@ -9158,7 +9223,7 @@ msgstr "Valor de la sesión"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Descargar"
@@ -9199,55 +9264,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Conexión insegura"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Almacenamiento de configuración"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Vista general"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Mostrar mensajes ocultos (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "No existen servidores configurados"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nuevo servidor"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Idioma predeterminado"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "permita que el usuario pueda escoger"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- ninguno -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Servidor predeterminado"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Final de la línea"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Mostrar"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Cargar"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Página de inicio de phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Donación"
@@ -9517,62 +9594,62 @@ msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente"
msgid "Function"
msgstr "Función"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr "Debido a su longitud,
esta columna podría no ser editable"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Eliminar referencia al repositorio BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binario - no editar"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Cargar al repositorio BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Insertar como una nueva fila"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Agregar como nueva fila e ignorar errores"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Mostrar consulta de inserción"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "y luego"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Volver"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Insertar un nuevo registro"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Volver a esta página"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Editar la siguiente fila"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse "
"a cualquier parte"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Continuar inserción con %s filas"
@@ -9731,7 +9808,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Añadir al índice %s columna(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "El número de columnas debe ser superior a cero."
@@ -9757,97 +9834,97 @@ msgstr "La tabla %s se copió a %s."
msgid "The table name is empty!"
msgstr "¡El nombre de la tabla está vacío!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Modificar el ORDER BY de la tabla"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(solamente)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Mover tabla a (Base de datos.tabla):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opciones de la tabla"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Cambiar el nombre de la tabla a"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copiar la tabla a (base de datos.tabla):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Cambiar a la tabla copiada"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Mantenimiento de la tabla"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentar la tabla"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Se ha vaciado el caché de la tabla %s"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Vaciar el caché de la tabla (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Borrar datos o tabla"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Vaciar la tabla (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Borrar la tabla (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Mantenimiento de la partición"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partición %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analice"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Revise"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimice"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Reconstruya"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Repare"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Remueva la partición"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Comprobar la integridad referencial:"
@@ -9855,39 +9932,39 @@ msgstr "Comprobar la integridad referencial:"
msgid "Show tables"
msgstr "Mostrar las tablas"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Espacio utilizado"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Uso"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efectivo/a"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Estadísticas de la fila"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Sentencias"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "estático"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinámico/a"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Longitud de la fila"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Tamaño de la fila "
@@ -9968,52 +10045,52 @@ msgstr "Ninguna"
msgid "Column %s has been dropped"
msgstr "Se ha eliminado la columna %s"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Se agregó una clave primaria en %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Se añadió un índice en %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Mostrar más acciones"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Vista de relaciones"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Planteamiento de la estructura de tabla"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Añadir columna"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Al final de la tabla"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Al comienzo de la tabla"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Después de %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Crear un índice en %s columna(s)"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "particionado"
@@ -10041,7 +10118,7 @@ msgstr "Se ha activado el seguimiento para %s.%s, versión %s."
msgid "SQL statements executed."
msgstr "Sentencias SQL ejecutadas."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -10049,101 +10126,131 @@ msgstr ""
"Puedes ejecutar el volcado creando y utilizando una base de datos temporal. "
"Por favor asegúrate de tener los privilegios para poder hacerlo."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Comenta estas dos líneas si no las necesitas."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "Sentencias SQL exportadas. Por favor copia el volcado o ejecútalo."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Captura de la versión %s (código SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Hacer un seguimiento de estas sentencias de definición de datos:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Agrupar los errores"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Realizando el seguimiento de las sentencias"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Muestra %s con fechas de %s a %s por parte del usuario %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Borrar los datos de seguimiento para esta tabla"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "No hay bases de datos"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Fecha"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Sentencia de definición de datos"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Sentencia de manipulación de datos"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Volcado SQL (descarga de archivo)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Volcado SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Esta opción sustituirá tu tabla y los datos que contiene."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Ejecución SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exportar como %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Mostrar versiones"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versión"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Desactivar el seguimiento para %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Desactivar ahora"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Activar el seguimiento para %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Activar ahora"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Crear versión %s de %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Hacer un seguimiento de estas sentencias de definición de datos:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Crear versión"
diff --git a/po/et.po b/po/et.po
index a3d845b481..dc4d4b4c49 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Näita kõiki"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Otsi"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Otsi"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Mine"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Võtme nimi"
@@ -117,17 +117,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Andmebaas %s kustutatud."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Andmebaasi kommentaar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabeli kommentaarid"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "Tabeli kommentaarid"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -148,11 +148,11 @@ msgstr "Väljade nimed"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tüüp"
@@ -162,8 +162,8 @@ msgstr "Tüüp"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Vaikimisi"
@@ -196,39 +196,40 @@ msgstr "Lingib "
msgid "Comments"
msgstr "Kommentaarid"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ei"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Jah"
@@ -240,8 +241,8 @@ msgstr "Prindi"
msgid "View dump (schema) of database"
msgstr "Vaata andmebaasi väljundit (skeemi)"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Andmebaasist ei leitud tabeleid."
@@ -267,81 +268,81 @@ msgstr "Andmebaas %s on ümber nimetatud %s"
msgid "Database %s has been copied to %s"
msgstr "Andmebaas %s on kopeeritud %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Nimeta andmebaas ümber"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Käsk"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Nimeta andmebaas ümber"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Andmebaas %s kustutatud."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Pole andmebaase"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopeeri andmebaas"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Ainult struktuur"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktuur ja andmed"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Ainult andmed"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE enne kopeerimist"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Lisa %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Lisa AUTO_INCREMENT väärtus"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Lisa piirangud"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Mine kopeeritud andmebaasile"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Määrang"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -353,7 +354,7 @@ msgstr ""
"Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda "
"miks see nii on, vajutage %ssiia%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -363,17 +364,17 @@ msgstr "Seoseskeem"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabel"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Ridu"
@@ -389,21 +390,21 @@ msgstr "kasutusel"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Loodud"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Viimane muudatus"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Viimane vaatamine"
@@ -415,101 +416,94 @@ msgid_plural "%s tables"
msgstr[0] "%s tabel(it)"
msgstr[1] "%s tabel(it)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Teie SQL päring täideti edukalt"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Te peate valima vähemalt ühe veeru kuvamiseks"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sorteeri"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Kasvav"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Kahanev"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Näita"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteerium"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "ja"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "või"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Muuda"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Lisa/Kustuta kriteeriumirida"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Lisa/Kustuta välja veerud"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Uuenda päringut"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Kasuta tabeleid"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-päring andmebaasist %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Lae päring"
@@ -551,7 +545,7 @@ msgstr[1] "%s vaste(t) tabelis %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Vaata"
@@ -561,14 +555,15 @@ msgstr "Vaata"
msgid "Delete the matches for the %s table?"
msgstr "Tabeli andmete salvestamine"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Kustuta"
@@ -612,17 +607,17 @@ msgstr "Otsi tabeli(te)st:"
msgid "No tables found in database"
msgstr "Andmebaasist ei leitud tabeleid."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s tühjendatud"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Vaade %s on kustutatud"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s kustutatud"
@@ -635,11 +630,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -663,22 +658,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Valitud:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Märgista kõik"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Puhasta kõik"
@@ -687,16 +682,16 @@ msgid "Check tables having overhead"
msgstr "Kontrolli ülekulusid"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspordi"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Trükivaade"
@@ -708,28 +703,45 @@ msgstr "Tühjenda"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Kustuta"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Kontrolli tabelit"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiseeri tabelit"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Paranda tabelit"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analüüsi tabelit"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Pole andmebaase"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Asenda tabeli andmed failiga"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Asenda tabeli andmed failiga"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Andmesõnastik"
@@ -744,10 +756,10 @@ msgstr "Kontrolli tabelit"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Andmebaas"
@@ -756,37 +768,37 @@ msgstr "Andmebaas"
msgid "Last version"
msgstr "Suhte loomine (relation)"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Loo"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Staatus"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Tegevus"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -795,11 +807,11 @@ msgstr ""
msgid "Versions"
msgstr "Pärsia"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Ainult struktuur"
@@ -809,8 +821,8 @@ msgstr "Ainult struktuur"
msgid "Untracked tables"
msgstr "Kontrolli tabelit"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Kontrolli tabelit"
@@ -871,8 +883,8 @@ msgstr "Väljavõte salvestati faili %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
@@ -942,6 +954,13 @@ msgstr ""
"phpMyAdmin pole võimeline Importi lõpetama, kui sa php skripti aega ei "
"pikenda."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Teie SQL päring täideti edukalt"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -966,265 +985,283 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" käsud keelatud."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Kas te tõesti tahate "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Toimingud"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Lubab lisada ja muuta infot."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "See tegevus võib võtta kaua aega. Jätkan?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Puuduv väärtus vormis !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "See pole number!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Masin on tühi!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Kasutajanimi on tühi!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Parool on tühi!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Paroolid ei ühti!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Lisa uus kasutaja"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Suhte loomine (relation)"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reload privileges"
msgid "Reloading Privileges"
msgstr "Lae privileegid uuesti"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Eemalda valitud kasutajad"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Katkesta"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Lokaalne"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Protsessid"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Korras"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Nimeta andmebaas ümber"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Nimeta andmebaas ümber"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopeeri andmebaas"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Tähetabel"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabelil peab olema vähemalt üks väli."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Loo tabel"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Otsi"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL-päring"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL-päring"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Mootor"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Salvesta"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Peida"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-päring"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-päring"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoreeri"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Vali eelistus võti (referenced key)"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Vali võõrvõti(Foreign Key)"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Palun vali primaarne või unkaalne võti"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Vali väli mida kuvada"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Genereeri parool"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genereeri"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Muuda parooli"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Esm"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1232,123 +1269,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Suhte loomine (relation)"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Pole andmebaase"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "Andmed"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Eelmine"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Järgmine"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kokku"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binaarne"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mär"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Veb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mär"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1356,176 +1398,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Det"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Püh"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Esm"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Tei"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ree"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Lau"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Püh"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Esm"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Tei"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Kol"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Nel"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ree"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lau"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "kasutusel"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1577,34 +1619,34 @@ msgid "No index defined!"
msgstr "Indeksit pole defineeritud!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksid"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikaalne"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kasulikkus"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Kommentaarid"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muuda"
@@ -1626,25 +1668,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Andmebaasid"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Viga"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1652,7 +1694,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Ridu pole valitud"
msgstr[1] "Ridu pole valitud"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1745,8 +1787,8 @@ msgstr "Tere tulemast %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid "
"kasutada %1$ssetup script%2$s et seadistada."
@@ -1896,19 +1938,19 @@ msgstr "Tabelid"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Andmed"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Kokku"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Ülejääv"
@@ -2005,16 +2047,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Vigane autoriseerimise meetod konfiguratsioonifailis:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks."
@@ -2049,7 +2091,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentatsioon"
@@ -2199,7 +2241,7 @@ msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktuur"
@@ -2234,7 +2276,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "webiserveri üleslaadimiskataloogi"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav"
@@ -2404,7 +2446,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Tühista"
@@ -2520,7 +2562,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2652,7 +2694,7 @@ msgid "Character set of the file"
msgstr "Faili tähetabel:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formaat"
@@ -2980,7 +3022,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Serverid"
@@ -3741,7 +3783,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4213,9 +4255,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Parool"
@@ -4235,8 +4277,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Kasutajanimi:"
@@ -4352,7 +4394,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4500,7 +4542,7 @@ msgstr "Saadetud"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nimi"
@@ -4523,8 +4565,8 @@ msgid "Designer"
msgstr "Kujundaja"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privileegid"
@@ -4536,7 +4578,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4555,23 +4597,23 @@ msgstr "Server ei vasta"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Muuda parooli"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Ilma paroolita"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Sisesta uuesti"
@@ -4595,7 +4637,7 @@ msgid "Create"
msgstr "Loo"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Ei oma ühtegi privileegi"
@@ -4725,8 +4767,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada "
"sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. "
@@ -4749,7 +4791,7 @@ msgstr "Pakkimine"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Pole"
@@ -4943,7 +4985,7 @@ msgstr "Sorteeri võtme järgi"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Tegevused"
@@ -4984,65 +5026,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Browseri transformatsioon"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopeeri"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Rida kustutatud"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Tapa"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "päringus"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Näita ridu"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "kokku"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Päring kestis %01.4f sek"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Muuda"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Päringu tulemuste tegevused"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Trükivaade (täispikkade tekstidega)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Näita PDF skeemi"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Suhte loomine (relation)"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Linki ei leitud"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versiooni info"
@@ -5446,8 +5488,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5571,9 +5613,9 @@ msgstr "Olemasolevad MIME-tüübid"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Masin"
@@ -5584,7 +5626,7 @@ msgid "Generation Time"
msgstr "Tegemisaeg"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Serveri versioon"
@@ -5927,7 +5969,32 @@ msgstr "Pole"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Ree"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Vali"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Lisa uus väli"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Ei muudetud"
@@ -6231,8 +6298,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Kasutajanimi"
@@ -6255,7 +6322,7 @@ msgstr "Muutuja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Väärtus"
@@ -6273,34 +6340,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Kõik kasutajad"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Kasutage tekstivälja"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Kõik masinad"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokaalne"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Antud host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Kasuta host tabelit"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6364,7 +6431,7 @@ msgstr "Parameetrid"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstra"
@@ -6467,12 +6534,12 @@ msgid "Toggle scratchboard"
msgstr "vaheta märkmetahvlit"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tundmatu keel: %1$s."
@@ -6551,7 +6618,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Päri SQL päring(uid) andmebaasist %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Kalender"
@@ -6586,10 +6653,6 @@ msgstr "Eraldaja"
msgid " Show this query here again "
msgstr " Näita päringut siin uuesti "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Vali"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Vaata ainult"
@@ -6598,7 +6661,7 @@ msgstr "Vaata ainult"
msgid "Location of the text file"
msgstr "tekstifaili asukoht"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "webiserveri üleslaadimiskataloogi"
@@ -6649,19 +6712,19 @@ msgstr "ALUSTA PUHAST"
msgid "END RAW"
msgstr "LÕPETA PUHAS"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Sulgemata jutumärk/ülakoma"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Vigane identifikaator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Tundmatu suunav tekst"
@@ -6716,7 +6779,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6765,12 +6828,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primaarne"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Täistekst"
@@ -6784,7 +6847,7 @@ msgstr ""
"mida %s teeb."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Varundusmootor"
@@ -6792,13 +6855,13 @@ msgstr "Varundusmootor"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Lisa %s väli(jad)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7022,82 +7085,82 @@ msgstr "Ei leidnud ühtegi faili ZIP arhiivist!"
msgid "Error in ZIP archive:"
msgstr "Viga ZIP arhiivis:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Peamised seoste võimalused"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL ühenduse kollatsioon"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Peamised seoste võimalused"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokolli versioon"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Kasutaja"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQLi tähetabel"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL kliendi versioon"
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP versioon"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Näita PHP informatsiooni"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Ametlik phpMyAdmini koduleht"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Parameetrid"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Ei muudetud"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7109,7 +7172,7 @@ msgstr ""
"server jookseb sellise seadega on ta avatud rünnakutele, soovitav on see "
"turvaauk kiiresti parandada."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7118,7 +7181,7 @@ msgstr ""
"Te olete lubanud mbstring.func_overload oma PHP konfiguratsioonis. See seade "
"ei ühildu phpMyAdminiga ja võib osade andmete kadumist põhjustada!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7128,7 +7191,7 @@ msgstr ""
"tähetabelit. Ilma mbstring lisata ei suuda phpMyAdmin poolitada teksti "
"korrektselt ja tulemus võib olla ootustele mittevastav."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7136,24 +7199,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguratsioonifail nõuab nüüd salajast võtmesõna (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7165,21 +7228,21 @@ msgstr ""
"Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda "
"miks see nii on, vajutage %ssiia%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7201,14 +7264,14 @@ msgstr "Väljade arv"
msgid "filter tables by name"
msgstr "tabeli nimi"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Loo tabel"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Valige andmebaas"
@@ -7601,75 +7664,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Sisaldab kõiki privileege peale GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Lubab muuta olemasolevate tabelite struktuure."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Lubab luua uusi andmebaase ja tabeleid."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Lubab salvestatud rutiinide loomise."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Lubab luua uusi tabeleid."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Lubab luua ajutisi tabeleid."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Lubab uute vaadete loomist."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Lubab kustutada infot."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Lubab kustuada andmebaase ja tabeleid."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Lubab kustutada tabeleid.."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Lubab salvestatud rutiinide käivituse."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7677,32 +7740,32 @@ msgstr ""
"taaskäivitamata."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Lubab luua ja kustutada indekseid."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Lubab lisada ja muuta infot."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "Limiteerib ühenduste arvu tunnis kasutaja jaoks."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "Limiteerib päringute arvu tunnis kasutaja jaoks."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7710,58 +7773,58 @@ msgstr ""
"Limiteerib käskude, mis muudavad suvalist tabelit või andmebaasi, arvu "
"tunnis kasutaja jaoks"
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Ei oma antud MySQL versioonis mingit effekti."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Lubab kasutajal küsida kus on slaved/masterid."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Vajalik slavede paljundamiseks."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Lubab lugeda infot."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Annab ligipääsu kogu andmebaasilistingule."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Lubab SHOW CREATE VIEW päringute käivitamise."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Lubab serverit maha lasta."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7772,13 +7835,13 @@ msgstr ""
"seadmine või teiste kasutajate ühenduste tapmine."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Lubab luua ja kustutada indekseid."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Lubab muuta infot."
@@ -7793,238 +7856,238 @@ msgctxt "None privileges"
msgid "None"
msgstr "Pole"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabel-spetsiifilised privileegid"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Märkus: MySQL privileegide nimed on ingliskeelsed "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globaalsed privileegid"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Andmebaas-spetsiifilised privileegid"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administreerimine"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globaalsed privileegid"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Andmebaas-spetsiifilised privileegid"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ressursilimiidid"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Märkus: Märkides antud seaded 0 (null), eemaldate limiidi."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Logimise informatsioon"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Ärge muutke parooli"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ei leitud ühtegi kasutajat."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Kasutaja %s on juba olemas!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Te lisasite uue kasutaja."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Te uuendasite privileege %s-l."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Te võtsite tagasi privileegid %s-lt"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Kasutaja %s parool vahetati õnnestunult."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Kustutan %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Ühtegi kasutajat pole valitud kustutamiseks!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Taaslaen privileege"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Valitud kasutajad on õnnestunult kustutatud."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privileegid taaslaeti edukalt."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Muuda privileege"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Võta tagasi"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "kõik"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Kasutaja ülevaade"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Õigused"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Lisa uus kasutaja"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Eemalda valitud kasutajad"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Eemalda kõik aktiivsed privileegid kasutajatelt ning kustuta nad pärast seda."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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 privileegid otse MySQL privileges "
"tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda "
"juhul kui olete käsitsi muudatusi teinud. Sellisel juhul peaksite te "
"privileegid %staaslaadima%s enne jätkamist."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Valitud kasutajat ei leitud privileegide tabelist."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Väli-spetsiifilised privileegid"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Lisa privileegid antud andmebaasile"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Metamärgid _ ja % peaksid olema varjestatud märgiga \\, kui soovite neid "
"sisestada"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Lisa privileegid antud tabelile"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Vaheta logimisinformatsiooni / Kopeeri kasutaja"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Loo uus kasutaja samade privileegidega ja ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... hoia vana alles."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... kustuta vana kasutajate tabelist."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... kanna kõik aktiivsed privileegid üle vanast ja kustuta see pärast."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... kustuta vana kasutajate tabelist ja taaslae privileegid pärast seda."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Andmebaas kasutajale"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Pole"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Loo sama nimega andmebaas ja anna kõik õigused"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Anna kõik õigused Metanimele (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Kontrolli privileege andmebaasile "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Kasutajad kellel on ligipääs "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globaalne"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "andmebaasipõhine"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "metamärk"
@@ -9150,7 +9213,7 @@ msgstr "Sessiooni väärtus"
msgid "Global value"
msgstr "Üldine väärtus"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9182,57 +9245,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Muutused salvestatud"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokaalne"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmini dokumentatsioon"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Andmed"
@@ -9460,65 +9535,65 @@ msgstr "Valitud kasutajad on õnnestunult kustutatud."
msgid "Function"
msgstr "Funktsioon"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Oma suuruse tõttu
võib see väli olla mittemuudetav "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binaarne - ärge muutke"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Lisa uue reana"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Näitan SQL päringut"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ja siis"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Mine eelmisele lehele tagasi"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Lisa järgmine uus rida"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Mine tagasi sellele lehele"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Muuda järgmist rida"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Kasutage TAB klahvi, et liikuda ühelt väärtuselt teisele või CTRL+nool, et "
"liikuda noole suunas"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9679,7 +9754,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Lisa indeksisse %s rida/read"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Veergude arv peab olema nullist suurem."
@@ -9705,105 +9780,105 @@ msgstr "Tabel %s on kopeeritud andmebaasi %s."
msgid "The table name is empty!"
msgstr "Tabeli nimi on tühi!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Muuda tabeli sorteeringut"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(üksikult)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Vii tabel üle (andmebaas.tabel):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tabeli seaded"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Nimeta tabel ümber"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopeeri tabel (andmebaas.tabel):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Mine üle kopeeritud tabelile"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabeli hooldus"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defrgamenteeri tabel"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabel %s ühtlustatud"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Ühtlusta tabelid (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Tabeli andmete salvestamine"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Pole andmebaase"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Tabeli hooldus"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Tsehhi"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Paranda tabelit"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Kontrolli pärinevust:"
@@ -9811,39 +9886,39 @@ msgstr "Kontrolli pärinevust:"
msgid "Show tables"
msgstr "Näita tabeleid"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Ruumivõtt"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Kasutus"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektiivne"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Rea statistika"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Parameerid"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dünaamiline"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Rea pikkus"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " rea suurus "
@@ -9929,57 +10004,57 @@ msgstr "Pole"
msgid "Column %s has been dropped"
msgstr "Tabel %s kustutatud"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Primaarne võti lisati %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Indeks lisati %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Näita PHP informatsiooni"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Pärinevuse vaade"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Soovita tabeli struktuuri"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Lisa %s väli(jad)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Tabeli lõppu"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Tabeli algusesse"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Peale %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Loo indeks %s väljadest"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -10007,109 +10082,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Päringu tüüp"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Lubab lisada ja muuta infot."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Pole andmebaase"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Andmed"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Ekspordi tüüp"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Pärsia"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Suhte loomine (relation)"
diff --git a/po/eu.po b/po/eu.po
index 55ad8c7e42..d01eb1f4f9 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
-"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Dena erakutsi"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Bilatu"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Bilatu"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Joan"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Klabearen hitza"
@@ -118,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s datu-basea ezabatua izan da."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Datu-basearen iruzkina: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Taularen iruzkinak"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,7 +136,7 @@ msgstr "Taularen iruzkinak"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -149,11 +149,11 @@ msgstr "Zutabe izenak"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Mota"
@@ -163,8 +163,8 @@ msgstr "Mota"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulua"
@@ -174,7 +174,7 @@ msgstr "Nulua"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Lehenetsia"
@@ -197,39 +197,40 @@ msgstr "Estekak honi:"
msgid "Comments"
msgstr "Iruzkinak"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ez"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Bai"
@@ -241,8 +242,8 @@ msgstr "Inprimatu"
msgid "View dump (schema) of database"
msgstr "Ikusi datu-basearen iraulketa (eskema)"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Ez da taularik aurkitu datu-basean."
@@ -269,83 +270,83 @@ msgstr "%s taula %s-(e)ra berrizendatua izan da"
msgid "Database %s has been copied to %s"
msgstr "%s taula hona kopiatua izan da: %s."
-#: db_operations.php:399
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Taula berrizendatu izen honetara: "
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Komandoa"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Taula berrizendatu izen honetara: "
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s datu-basea ezabatua izan da."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Datu-baserik ez"
-#: db_operations.php:478
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Datu-baserik ez"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Egitura soilik"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Egitura eta datuak"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Datuak soilik"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s gehitu"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Gehitu AUTO_INCREMENT balioa"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Murrizketak gehitu"
-#: db_operations.php:519
+#: db_operations.php:528
#, fuzzy
msgid "Switch to copied database"
msgstr "Kopiatutako taulara aldatu"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Ordenamendua"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -357,7 +358,7 @@ msgstr ""
"Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . "
"Zergatia jakiteko egizu klik %shemen%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -367,17 +368,17 @@ msgstr "Erlazio-eskema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Taula"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Errenkadak"
@@ -393,21 +394,21 @@ msgstr "lanean"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Sortzea"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Azken eguneraketa"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Azken egiaztapena"
@@ -419,101 +420,94 @@ msgid_plural "%s tables"
msgstr[0] "%s taula(k)"
msgstr[1] "%s taula(k)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Zure SQL-kontsula arrakastaz burutu da"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu."
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Ordenatu"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Goranzko"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Beherantz"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Erakutsi"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Irizpidea"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Txertatu"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Eta"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Ezabatu"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Edo"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Aldatu"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Gehitu/ezabatu irizpide-errenkada"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Kontsulta eguneratu"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Taulak erabili"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-kontsulta %s datu-basean:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Kontsulta bidali"
@@ -555,7 +549,7 @@ msgstr[1] "%s emaitza(k) %s taulan"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Arakatu"
@@ -565,14 +559,15 @@ msgstr "Arakatu"
msgid "Delete the matches for the %s table?"
msgstr "Taula honen datuak irauli"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Ezabatu"
@@ -616,17 +611,17 @@ msgstr "Taul(ar)en barnean:"
msgid "No tables found in database"
msgstr "Ez da taularik aurkitu datu-basean."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "%s taula hustu egin da"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "%s eremua ezabatu da"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "%s taula ezabatu egin da"
@@ -639,11 +634,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -668,22 +663,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Ikurdunak:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Guztiak egiaztatu"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desautatu dena"
@@ -692,16 +687,16 @@ msgid "Check tables having overhead"
msgstr "Arazteko hondakinak egiaztatu"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Esportatu"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Inprimatzeko ikuspegia"
@@ -713,28 +708,44 @@ msgstr "Hutsik"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Ezabatu"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Taula egiaztatu"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Taula optimizatu"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Taula konpondu"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Taula aztertu"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Taularen datuak fitxategiarekin ordezkatu "
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Taularen datuak fitxategiarekin ordezkatu "
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datu-hiztegia"
@@ -748,10 +759,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Datu-basea"
@@ -759,37 +770,37 @@ msgstr "Datu-basea"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Sortu"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Egoera"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Ekintza"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -798,11 +809,11 @@ msgstr ""
msgid "Versions"
msgstr "Eragiketak"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Egitura soilik"
@@ -811,8 +822,8 @@ msgstr "Egitura soilik"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Taula egiaztatu"
@@ -873,8 +884,8 @@ msgstr "Iraulketa %s fitxategian gorde da."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -932,6 +943,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Zure SQL-kontsula arrakastaz burutu da"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -958,259 +976,273 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" sententziak ezgaituta daude."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Benetan nahi al duzu "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
+msgstr ""
+
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "Prozesuak"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Datuak txertatu eta ordezkatzea baimentzen du."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Balioa bat falta da formularioan!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Hau ez da zenbaki bat!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Zerbitzariaren izena hutsik dago!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Erabiltzailearen izena hutsik dago!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Pasahitza hutsik dago!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Pasahitzek ez dute bat egiten!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Erabiltzaile berria gehitu"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Zerbitzariaren bertsioa"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Pribilegioak berkargatzen"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Hautatutako erabiltzaileak baztertu"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Lokal"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Prozesuak"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Zuzena"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
msgid "Renaming Databases"
msgstr "Taula berrizendatu izen honetara: "
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
msgid "Reload Database"
msgstr "Taula berrizendatu izen honetara: "
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
msgid "Copying Database"
msgstr "Datu-baserik ez"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Karaktere-jokoa"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Orri berri bat sortu"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Bilatu"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL kontsulta"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL kontsulta"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Gorde"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL kontsulta"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL kontsulta"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ezikusi"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Aukeratu erakutsi beharreko eremua"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Egilea:"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Astel"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1218,123 +1250,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Datu-baserik ez"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Batez"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Aurrekoa"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Hurrengoa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gutira"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binarioa "
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Api"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Eka"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Uzt"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Abu"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Urr"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1342,176 +1379,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Abe"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Iga"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Astel"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Astea"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Osti"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Lar"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Iga"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Astel"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Astea"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Astez"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Oste"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Osti"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lar"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lanean"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1562,34 +1599,34 @@ msgid "No index defined!"
msgstr "Ez dago indizerik definituta!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indizeak"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Bakarra"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalitatea"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Iruzkinak"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editatu"
@@ -1611,32 +1648,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Datu-baseak"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Errorea"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1728,8 +1765,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1875,19 +1912,19 @@ msgstr "Taulak"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Datuak"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Gutira"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Arazteko hondakina"
@@ -1982,16 +2019,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Zerbitzaria"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
@@ -2026,7 +2063,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentazioa"
@@ -2174,7 +2211,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Egitura"
@@ -2209,7 +2246,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri"
@@ -2380,7 +2417,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Reset egin"
@@ -2496,7 +2533,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2625,7 +2662,7 @@ msgid "Character set of the file"
msgstr "Fitxategiaren karaktereen kodeketa:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formatoa"
@@ -2953,7 +2990,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Zerbitzaria"
@@ -3693,7 +3730,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4160,9 +4197,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Pasahitza"
@@ -4182,8 +4219,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Erabiltzaile-izena:"
@@ -4299,7 +4336,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4446,7 +4483,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Izena"
@@ -4469,8 +4506,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Pribilegioak"
@@ -4482,7 +4519,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4501,23 +4538,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Pasahitza aldatu"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Pasahitzik ez"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Berridatzi"
@@ -4539,7 +4576,7 @@ msgid "Create"
msgstr "Sortu"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Pribilegiorik gabe"
@@ -4664,8 +4701,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4685,7 +4722,7 @@ msgstr "Trinkotzea"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Batez"
@@ -4866,7 +4903,7 @@ msgstr "Gakoaren arabera ordenatu"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Eragiketak"
@@ -4907,65 +4944,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Nabigatzailearen eraldaketa"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Errenkada ezabatua izan da"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Hil"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "kontsultan"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Errenkadak erakusten"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "guztira"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Aldatu"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Inprimatzeko ikuspena (testu osoak)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF eskema erakutsi"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Esteka aurkitugabea"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Saioa hasteko informazioa"
@@ -5352,8 +5389,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5471,9 +5508,9 @@ msgstr "MIME-mota erabilgarriak"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Zerbitzaria"
@@ -5484,7 +5521,7 @@ msgid "Generation Time"
msgstr "Sortzeko denbora"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Zerbitzariaren bertsioa"
@@ -5821,7 +5858,30 @@ msgstr "Batez"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Osti"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Bidali"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Aldaketarik ez"
@@ -6131,8 +6191,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Erabiltzaile-izena"
@@ -6153,7 +6213,7 @@ msgstr "Aldagaia"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "balioa"
@@ -6172,34 +6232,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Edozein erabiltzaile"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Testu-eremua erabili"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Edozein ostalari"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Host hau"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Host taula erabili"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6263,7 +6323,7 @@ msgstr "Atributuak"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6366,12 +6426,12 @@ msgid "Toggle scratchboard"
msgstr "Aldatu \"scratchboard\"-a"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6451,7 +6511,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6485,10 +6545,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Kontsulta hau hemen berriz erakutsi"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Bidali"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Soilik ikusi"
@@ -6497,7 +6553,7 @@ msgstr "Soilik ikusi"
msgid "Location of the text file"
msgstr "Testu-fitxategiaren kokapena"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
@@ -6548,19 +6604,19 @@ msgstr "IRAULKETAREN HASIERA"
msgid "END RAW"
msgstr "IRAULKETAREN AMAIERA"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Itxi gabeko komatxoak"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Indentifikatzaile okerra"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Puntuazio ikurra ezezaguna"
@@ -6616,7 +6672,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indizea"
@@ -6665,12 +6721,12 @@ msgid "As defined:"
msgstr "Honela definitua:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Lehen mailakoa"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Testu osoa"
@@ -6684,7 +6740,7 @@ msgstr ""
"egileari galdetu, %s-(e)k zer egiten duen."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6692,13 +6748,13 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Gehitu %s zutabe"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6893,82 +6949,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Erlazioen ezaaugarri orokorrak"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Erlazioen ezaaugarri orokorrak"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Erabiltzailea"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL karaktere-multzoa"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP Bertsioa"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP informazioa erakutsi"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin-en webgune ofiziala"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributuak"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Aldaketarik ez"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6980,21 +7036,21 @@ msgstr ""
"lehenetsitako balio hauekin ari da lanean; atzipen-saiakera arrotzei irekita "
"beraz. Segurtasun-zulo hau konpondu beharko zenuke."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7002,26 +7058,26 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Konfigurazio-fitxategiak orain ezkutuko pasahitz bat behar du "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7033,21 +7089,21 @@ msgstr ""
"Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . "
"Zergatia jakiteko egizu klik %shemen%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7068,13 +7124,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Taularen \"Order By\" aldatu"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Orri berri bat sortu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Datu-base bat hautatu mesedez"
@@ -7469,80 +7525,80 @@ msgid "Includes all privileges except GRANT."
msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Uneko taulen egiturak aldatzea baimentzen du."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "Indizeak sortu eta ezabatzea baimentzen du."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Datu-base eta taula berriak sortzea baimentzen du."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "Taula berriak sortzea baimentzen du."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Taula berriak sortzea baimentzen du."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Aldi baterako taulak sortzea baimentzen du."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "Taula berriak sortzea baimentzen du."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Datuak ezabatzea baimentzen du."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Datu-base eta taulak ezabatzea baimentzen du."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Taulak ezabatzea baimentzen du."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
"Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen "
"du."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7550,35 +7606,35 @@ msgstr ""
"berkargatu gabe."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Indizeak sortu eta ezabatzea baimentzen du."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Datuak txertatu eta ordezkatzea baimentzen du."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Momentuko harian taulak blokeatzea baimentzen du."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7586,62 +7642,62 @@ msgstr ""
"Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen "
"komando kopurua mugatzen du."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Ez du eraginik MySQL bertsio honetan."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen "
"du."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Erreplikazio morroientzat beharrezkoa."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Datuak irakurtzea baimentzen du."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Zerbitzaria amatatzea baimentzen du."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7652,13 +7708,13 @@ msgstr ""
"bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Indizeak sortu eta ezabatzea baimentzen du."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Datuak aldatzea baimentzen du."
@@ -7673,143 +7729,143 @@ msgctxt "None privileges"
msgid "None"
msgstr "Batez"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Taularen pribilegio espezifikoak"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Pribilegio orokorrak"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Datu-basearen pribilegio espezifikoak"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Kudeaketa"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Pribilegio orokorrak"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Datu-basearen pribilegio espezifikoak"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Baliabideen mugak"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Saioa hasteko informazioa"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Pasahitza ez aldatu"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Ez da erabiltzailerik aurkitu."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "%s erabiltzailea badago lehendik ere!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Erabiltzaile berria gehitu duzu."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s-aren pribilegioak eguneratu dituzu."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s ezabatzen"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Pribilegioak berkargatzen"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Pribilegioak arrakastaz berkargatu dira."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Editatu Pribilegioak"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Ezeztatu"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Edozein"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Erabiltzailearen info orokorra"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Baimendu"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Erabiltzaile berria gehitu"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Hautatutako erabiltzaileak baztertu"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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 "
@@ -7817,49 +7873,49 @@ msgstr ""
"daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s "
"beharko zenituzke."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Zutabearen pribilegio espezifikoak"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Pribilegioak gehitu datu-base honetan"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Pribilegioak gehitu taula honetan "
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... mantendu aurrekoa."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... zaharra ezabatu erabiltzaileen tauletatik."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7867,44 +7923,44 @@ msgstr ""
" ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu "
"pribilegioak."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Batez"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" datu-basearen pribilegioak egiaztatu."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "orokorra"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Datubasearentzat espezifikoa"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "komodina"
@@ -8927,7 +8983,7 @@ msgstr "Saioaren balioa"
msgid "Global value"
msgstr "Balio orokorra"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8959,57 +9015,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Aldaketak gorde dira"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokal"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentazioa"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9236,62 +9304,62 @@ msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
msgid "Function"
msgstr "Funtzioak"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Bere luzeragatik,
eremu hau ez da editagarria "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binarioa - ez editatu! "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Txertatu errenkada berri batean"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "eta orduan"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Itzuli"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Erregistro berria gehitu"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Egin atzera orri honetara"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Editatu hurrengo lerroa"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9449,7 +9517,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr " %s zutabe indizean gehituta"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9475,105 +9543,105 @@ msgstr "%s taula hona kopiatua izan da: %s."
msgid "The table name is empty!"
msgstr "Taularen izena hutsik dago!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Taularen \"Order By\" aldatu"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(soilik)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Taula hona mugitu (datu-basea.taula):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Taularen hobespenak"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Taula berrizendatu izen honetara: "
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Taula hona kopiatu: (datu-base.taula):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Kopiatutako taulara aldatu"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Taularen mantenua"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "%s taularen cachea hustu egin da"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Taularen cachea hustu (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Taula honen datuak irauli"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Datu-baserik ez"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Taularen mantenua"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Aztertu"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Txekiera"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Taula konpondu"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Erreferentzien integritatea egiaztatu:"
@@ -9581,39 +9649,39 @@ msgstr "Erreferentzien integritatea egiaztatu:"
msgid "Show tables"
msgstr "Taulak erakutsi"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Erabilitako lekua"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Erabilpena"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Eraginkorra"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Errenkadaren estatistikak"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Sententziak"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamikoa"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Errenkadaren luzera"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Errenkadaren tamaina "
@@ -9697,57 +9765,57 @@ msgstr "Batez"
msgid "Column %s has been dropped"
msgstr "%s taula ezabatu egin da"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Indize bat gehitu gehitu zaio %s-(r)i"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "PHP informazioa erakutsi"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Erlazioen ikuspegia"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Taularen egituraren proposamena "
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Gehitu %s zutabe"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Taularen amaieran"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Taularen hasieran"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s(a)ren ondoren"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Indize bat sortu %s zutabetan"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9775,109 +9843,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Kontsulta mota"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Datuak txertatu eta ordezkatzea baimentzen du."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Datu-baserik ez"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Datuak"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "PHP Bertsioa"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Zerbitzariaren bertsioa"
diff --git a/po/fa.po b/po/fa.po
index 7a38ff7aec..ae40501520 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \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"
+"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "نمايش همه"
@@ -42,9 +42,9 @@ msgstr ""
msgid "Search"
msgstr "جستجو"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -60,22 +60,22 @@ msgstr "جستجو"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "تاييد"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Keyname"
@@ -117,17 +117,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "پايگاه داده %1$s ایجاد شده است."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "توضيحات پایگاه داده:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "توضيحات جدول"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "توضيحات جدول"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "ستون"
@@ -146,11 +146,11 @@ msgstr "ستون"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "نوع"
@@ -160,8 +160,8 @@ msgstr "نوع"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "خالي"
@@ -171,7 +171,7 @@ msgstr "خالي"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "پيشفرض"
@@ -194,39 +194,40 @@ msgstr "پيوند به"
msgid "Comments"
msgstr "توضيحات"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "خير"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "بلي"
@@ -238,8 +239,8 @@ msgstr "چاپ"
msgid "View dump (schema) of database"
msgstr "نمايش الگوي پايگاه داده"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ."
@@ -265,78 +266,78 @@ msgstr "نام پایگاه داده %s به %s تغییر داده شد"
msgid "Database %s has been copied to %s"
msgstr "پایگاه داده %s در %s کپی شد"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "تغییر نام پایگاه داده به"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "دستور"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "حذف پایگاه داده"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "پايگاه داده %s حذف گرديد."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "حذف پایگاه داده"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "کپی کردن پابگاه داده به"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "فقط ساختار"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "ساختار و دادهها"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "فقط دادهها"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "پیش از کپی پایگاه داده ایجاد شود"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "افزودن %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "مقدار افزایشی خودکار اضافه شود"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "اعمال محدودیت ها"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "تعویض به پایگاه داده ی کپی شده"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "مقایسه"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -348,7 +349,7 @@ msgstr ""
"امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شدهاست . براي پيداكردن "
"دليل آن %sاينجا%s را بزنيد ."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "ویرایش یا صدور نمای رابطه ای"
@@ -356,17 +357,17 @@ msgstr "ویرایش یا صدور نمای رابطه ای"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "جدول"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "سطرها"
@@ -382,21 +383,21 @@ msgstr "in use"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "ایجاد"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "آخرین به روز رسانی"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr ""
@@ -406,99 +407,92 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s جدول"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "تعویض به"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "سازنده ی تصویری"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "ترتيب"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "صعودي"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "نزولي"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "نمايش"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "معيارها"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "و"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "يا"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "اصلاح"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "اضافه/حذف معيارها"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "اضافه/حذف ستون ها"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "بههنگام سازي پرس و جو"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "بكارگيري جدولها"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "پرس و جوي SQL از پايگاه داده %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Submit Query"
@@ -538,7 +532,7 @@ msgstr[0] "%s عبارت همتا در جدول %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "مشاهده"
@@ -547,14 +541,15 @@ msgstr "مشاهده"
msgid "Delete the matches for the %s table?"
msgstr "داده های همتا در جدول %s حذف شوند؟"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "حذف"
@@ -592,17 +587,17 @@ msgstr "در جدول:"
msgid "No tables found in database"
msgstr "در پايگاه داده هيچ جدولي یافت نشد."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s خالي شد"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "نمای %s حذف گرديد."
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s حذف گرديد"
@@ -615,11 +610,11 @@ msgstr "پیگردی فعال می باشد."
msgid "Tracking is not active."
msgstr "پیگردی فعال نمی باشد."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه "
"نمایید."
@@ -645,22 +640,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "موارد انتخابشده :"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "انتخاب همه"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "عدم انتخاب همه"
@@ -669,16 +664,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "صدور"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "نماي چاپ"
@@ -690,28 +685,44 @@ msgstr "خالي كردن"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "حذف"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "بررسي جدول"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "بهينهسازي جدول"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "مرمت جدول"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "تحليل جدول"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "جايگزيني دادههاي جدول با پرونده"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "جايگزيني دادههاي جدول با پرونده"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "فرهنگ دادهها"
@@ -725,10 +736,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "پايگاه داده"
@@ -736,36 +747,36 @@ msgstr "پايگاه داده"
msgid "Last version"
msgstr "نسخه قبلی"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "ایجاد شده"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "به روز شده"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "عمل"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "فعال"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "غیر فعال"
@@ -774,11 +785,11 @@ msgstr "غیر فعال"
msgid "Versions"
msgstr "فارسي"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "فقط ساختار"
@@ -787,8 +798,8 @@ msgstr "فقط ساختار"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "بررسي جدول"
@@ -847,8 +858,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -907,6 +918,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -931,252 +949,266 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "دستور \"DROP DATABASE\" غيرفعال ميباشد."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "آيا مطمئن هستيد "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
-msgid "Deleting tracking data"
-msgstr ""
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
+msgid "Dropping Procedure"
msgstr ""
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr ""
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr ""
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "مقداري در فرم وارد نشده !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "اين يك عدد نيست!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "نام ميزبان خالي است!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "نام كاربر خالي است!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "اسم رمز خالي است!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "اسم رمزها مانند هم نميباشد!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "افزودن يك كاربر جديد"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "نسخه سرور"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Edit Privileges"
msgid "Reloading Privileges"
msgstr "ويرايش امتيازات"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "لغو کردن"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "محلی"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "تاييد"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
msgid "Renaming Databases"
msgstr "بازناميدن جدول به"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
msgid "Reload Database"
msgstr "بازناميدن جدول به"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
msgid "Copying Database"
msgstr "No databases"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "ساخت يك صفحه جديد"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "جستجو"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "پرس و جوي SQL"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "پرس و جوي SQL"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "موتور"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "ذخيره"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "پرس و جوي SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "پرس و جوي SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "ستون را براي نمايش انتخاب نماييد"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "توليدشده توسط"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "دوشنبه"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1184,125 +1216,130 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "نسخه قبلی"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "No databases"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "خير"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "قبل"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "بعد"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "جمع كل"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "دودويي"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "آوريل"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "مي"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ژوئن"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "جولاي"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "آگوست"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "اكتبر"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1310,174 +1347,174 @@ msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "دسامبر"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "يكشنبه"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "دوشنبه"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "سهشنبه"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "چهارشنبه"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "پنجشنبه"
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "جمعه"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "شنبه"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "شنبه"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "يكشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "دوشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "سهشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "چهارشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "پنجشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "جمعه"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "شنبه"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "هفته"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "ساعت"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "دقیقه"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr " ثانیه"
@@ -1526,34 +1563,34 @@ msgid "No index defined!"
msgstr "هيچ فهرستي تعريفنشدهاست!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "فهرستها"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "يكتا"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr ""
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "توضيحات"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "ويرايش"
@@ -1575,32 +1612,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "پايگاههاي داده"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "خطا"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1692,8 +1729,8 @@ msgstr "به %s خوشآمديد"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1836,19 +1873,19 @@ msgstr "جدولها"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "داده"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "جمع كل"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr ""
@@ -1940,16 +1977,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "سرور"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1984,7 +2021,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "مستندات"
@@ -2136,7 +2173,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "ساختار"
@@ -2170,7 +2207,7 @@ msgid "Select from the web server upload directory %s:"
msgstr ""
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "پوشهاي را كه براي انتقال فايل انتخاب كردهايد قابل دسترسي نيست."
@@ -2339,7 +2376,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Reset"
@@ -2454,7 +2491,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2583,7 +2620,7 @@ msgid "Character set of the file"
msgstr "مجموعه كاراكترهاي پرونده:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "قالب"
@@ -2905,7 +2942,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "سرور"
@@ -3632,7 +3669,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4094,9 +4131,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "اسم رمز"
@@ -4116,8 +4153,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "نام كاربر:"
@@ -4233,7 +4270,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4381,7 +4418,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "اسم"
@@ -4404,8 +4441,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "امتيازات"
@@ -4417,7 +4454,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4436,23 +4473,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "تغيير اسم رمز"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "بدون اسم رمز"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "تكرار"
@@ -4474,7 +4511,7 @@ msgid "Create"
msgstr "ساختن"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
#, fuzzy
msgid "No Privileges"
msgstr "امتيازات"
@@ -4597,8 +4634,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4618,7 +4655,7 @@ msgstr "فشردهسازي"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "خير"
@@ -4793,7 +4830,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "عمليات"
@@ -4830,65 +4867,65 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "سطر حذف گرديد ."
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "جمع كل"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "تغيير"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "نمايش توضيحات ستون"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "نسخه سرور"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "پيوند پيدا نشد"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "اطلاعات ورود"
@@ -5273,8 +5310,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5387,9 +5424,9 @@ msgstr "نمايش خصوصيات"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "ميزبان"
@@ -5400,7 +5437,7 @@ msgid "Generation Time"
msgstr "زمان توليد"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "نسخه سرور"
@@ -5737,7 +5774,30 @@ msgstr "خير"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "جمعه"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "ارسال"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr ""
@@ -6042,8 +6102,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "نام كاربر"
@@ -6064,7 +6124,7 @@ msgstr "متغییر"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "مقدار"
@@ -6083,34 +6143,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "همه كاربران"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "همه ميزبانها"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "محلی"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6174,7 +6234,7 @@ msgstr "ويژگيها"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "اضافي"
@@ -6273,12 +6333,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "زبانِ ناشناس : %1$s."
@@ -6359,7 +6419,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "اجراي پرس و جو(ها)ي SQL در پايگاهداده %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "تقویم"
@@ -6394,10 +6454,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " نمايش دوباره اين پرس و جو در اينجا "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "ارسال"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr ""
@@ -6406,7 +6462,7 @@ msgstr ""
msgid "Location of the text file"
msgstr "محل پرونده متني"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr ""
@@ -6445,19 +6501,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6496,9 +6552,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
-"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' "
-"يا 'a\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
+"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a"
+"\\'b')"
#: libraries/tbl_properties.inc.php:105
msgid ""
@@ -6508,7 +6564,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "فهرست"
@@ -6533,9 +6589,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
-"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' "
-"يا 'a\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
+"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a"
+"\\'b')"
#: libraries/tbl_properties.inc.php:371
msgid "ENUM or SET data too long?"
@@ -6557,12 +6613,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "اصلي"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "كاملا متن"
@@ -6574,7 +6630,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6582,12 +6638,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "افزودن ستون جديد"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6728,76 +6784,76 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr ""
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr ""
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "كاربر"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "مجموع كاراكترهاي MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "نسخه PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "نمايش اطلاعات PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "صفحه خانه رسمي phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "ويژگيها"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr ""
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6805,24 +6861,24 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
-"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز "
-"ميشود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
+"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز ميشود "
+"، و شما بايد اين حفره امنيتي را ذرست كنيد."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6830,24 +6886,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6859,21 +6915,21 @@ msgstr ""
"امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شدهاست . براي پيداكردن "
"دليل آن %sاينجا%s را بزنيد ."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6894,13 +6950,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "تغيير جدول مرتب شده با"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "ساخت يك صفحه جديد"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "لطفا يك پايگاه داده را انتخاب نماييد."
@@ -7286,163 +7342,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7450,12 +7506,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7471,230 +7527,230 @@ msgctxt "None privileges"
msgid "None"
msgstr "خير"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " نكته : نام امتيازات MySQL به زبان انگليسي بيان ميشود ."
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "مدیریت"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "اطلاعات ورود"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "عدم تغيير اسم رمز"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "هيچ كاربري وچود ندارد."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "شما يك كاربر جديد اضافه كرديد."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "امتيازات %s به هنگام گرديد."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "شما امتيازات %s را ابطال كرديد"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "در حال پاک کردن %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "ويرايش امتيازات"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "ابطال"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "همه"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
#, fuzzy
msgid "Grant"
msgstr "چاپ"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "افزودن يك كاربر جديد"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "خير"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8708,7 +8764,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8740,57 +8796,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "اصلاحات ذخيره گرديد"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "محلی"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "مستندات phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9017,60 +9085,60 @@ msgstr ""
msgid "Function"
msgstr "تابع"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr ""
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "درج به عنوان يك سطر جديد"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "و سپس"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "برو به صفحه قبل"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "درج يك سطر جديد ديگر"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "برگرد به این صفحه"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "ویرایش کردن ردیف بعدی"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9225,7 +9293,7 @@ msgstr "(فقط و فقط بايد \"PRIMARY\" نام يك كليد اص
msgid "Add to index %s column(s)"
msgstr "ساخت يك فهرست در %s ستون"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9251,103 +9319,103 @@ msgstr "جدول %s به %s كپي شد."
msgid "The table name is empty!"
msgstr "نام جدول وارد نشدهاست !"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "تغيير جدول مرتب شده با"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(تنها)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "انتقال جدول به (پايگاه داده.جدول):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "بازناميدن جدول به"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "كپي كردن جدول به (پايگاه داده.جدول):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "نگهداشت جدول"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, fuzzy, php-format
msgid "Table %s has been flushed"
msgstr "جدول %s حذف گرديد"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Flush the table (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "حذف دادههاي جدول"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "No databases"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "نگهداشت جدول"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "تعمیر"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -9355,39 +9423,39 @@ msgstr ""
msgid "Show tables"
msgstr "نمايش جدولها"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "فضاي استفادهشده"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "استفاده"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "موثر"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "آمار سطرها"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "شرج"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "پويا"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "طول سطر"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " اندازه سطر "
@@ -9470,56 +9538,56 @@ msgstr "خير"
msgid "Column %s has been dropped"
msgstr "جدول %s حذف گرديد"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "يك كليد اصلي در %s اضافه شد"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "يك فهرست در %s اضافه گرديد."
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "نمايش اطلاعات PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "پيشنهاد ساختار جدول"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "افزودن ستون جديد"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "در انتهاي جدول"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "در ابتداي جدول"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "بعد از %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "ساخت يك فهرست در %s ستون"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9547,109 +9615,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query"
+msgid "Query error"
+msgstr "پرس و جو"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "No databases"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "داده"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "فارسي"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "نسخه سرور"
diff --git a/po/fi.po b/po/fi.po
index bdb66930cf..0950815353 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
-"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Näytä kaikki"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Etsi"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Etsi"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Siirry"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Avaimen nimi"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Tietokanta %1$s on luotu."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Tietokannan kommentti: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Taulun kommentit"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Taulun kommentit"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Sarake"
@@ -149,11 +149,11 @@ msgstr "Sarake"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tyyppi"
@@ -163,8 +163,8 @@ msgstr "Tyyppi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Tyhjä"
@@ -174,7 +174,7 @@ msgstr "Tyhjä"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Oletusarvo"
@@ -197,39 +197,40 @@ msgstr "Linkitys sarakkeeseen:"
msgid "Comments"
msgstr "Kommentit"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ei"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Kyllä"
@@ -241,8 +242,8 @@ msgstr "Tulosta"
msgid "View dump (schema) of database"
msgstr "Tee vedos tietokannasta"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Tietokannassa ei ole tauluja."
@@ -268,78 +269,78 @@ msgstr "Tietokannan %s nimi on nyt %s"
msgid "Database %s has been copied to %s"
msgstr "Tietokanta %s on kopioitu tietokantaan %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Muuta tietokannan nimi"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Komento"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Tuhoa tietokanta"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Tietokanta %s on poistettu."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Tuhoa tietokanta (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Luo tietokannasta toinen tietokanta nimellä"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Vain rakenne"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Rakenne ja tiedot"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Vain tiedot"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Suorita CREATE DATABASE ennen kopiointia"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Lisää %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Lisää AUTO_INCREMENT-arvo"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Lisää rajoitteet"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Siirry kopioituun tietokantaan"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Aakkosjärjestys"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"phpMyAdminin asetusmuisti on poistettu käytöstä. Katso %slisätietoja%s, "
"mistä tämä johtuu."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Relaatioskeeman muokkaus tai vienti"
@@ -356,17 +357,17 @@ msgstr "Relaatioskeeman muokkaus tai vienti"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Taulu"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Kpl rivejä"
@@ -382,21 +383,21 @@ msgstr "käytössä"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Luotu"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Viimeksi päivitetty"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Viimeksi tarkistettu"
@@ -407,97 +408,90 @@ msgid_plural "%s tables"
msgstr[0] "%s taulu"
msgstr[1] "%s taulua"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL-kyselyn suoritus onnistui"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Valitse vähintään yksi sarake"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Siirry kohteeseen"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "visuaalinen luonti"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Järjestys"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Nouseva"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Laskeva"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Näytä"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Hakuehdot"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Lisää"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Ja"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Poista"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Tai"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Muokkaa"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Lisää tai poista hakuehtoja"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Lisää tai poista sarakkeita"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Päivitä kysely"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Käytä tauluja"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Suorita SQL-kysely tietokannassa %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Suorita"
@@ -538,7 +532,7 @@ msgstr[1] "%s hakutulosta taulussa %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Selaa"
@@ -547,14 +541,15 @@ msgstr "Selaa"
msgid "Delete the matches for the %s table?"
msgstr "Poista taulusta %s löytyneet tulokset?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Poista"
@@ -593,17 +588,17 @@ msgstr "Sarakkeen sisältä:"
msgid "No tables found in database"
msgstr "Tietokannassa ei ole tauluja."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Taulu %s on tyhjennetty"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Näkymä %s on poistettu"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Taulu %s on poistettu"
@@ -616,14 +611,14 @@ msgstr "Seuranta on käytössä."
msgid "Tracking is not active."
msgstr "Seuranta ei ole käytössä."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
-"%sohjeista%s."
+"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
+"sohjeista%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -646,22 +641,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Valitut:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Valitse kaikki"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Poista valinta kaikista"
@@ -670,16 +665,16 @@ msgid "Check tables having overhead"
msgstr "Valitse taulut, joissa on ylijäämää"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Vienti"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Tulostusversio"
@@ -691,28 +686,46 @@ msgstr "Tyhjennä"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Tuhoa"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Tarkista taulu"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimoi taulu"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Korjaa taulu"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analysoi taulu"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Siirry tauluun"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Korvaa taulun nykyiset rivit tiedostolla"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Korvaa taulun nykyiset rivit tiedostolla"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Tietosanasto"
@@ -726,10 +739,10 @@ msgstr "Seurattavat taulut"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Tietokanta"
@@ -737,36 +750,36 @@ msgstr "Tietokanta"
msgid "Last version"
msgstr "Viimeinen versio"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Luotu"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Päivitetty"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Tila"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Toiminnot"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Poista tämän taulun seurantatiedot"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "käytössä"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "ei käytössä"
@@ -774,11 +787,11 @@ msgstr "ei käytössä"
msgid "Versions"
msgstr "Versiot"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Seurantaraportti"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Rakenteen kuvaus"
@@ -786,8 +799,8 @@ msgstr "Rakenteen kuvaus"
msgid "Untracked tables"
msgstr "Seuraamattomat taulut"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Seuraa taulua"
@@ -846,8 +859,8 @@ msgstr "Vedos tallennettiin tiedostoon %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
@@ -917,6 +930,13 @@ msgstr ""
"tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun "
"asti ellei PHP:n suoritusaikarajaa nosteta."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL-kyselyn suoritus onnistui"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -941,228 +961,246 @@ msgstr "Poista valinta painamalla"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Haluatko varmasti "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Poistotapahtuma"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Poistotoiminto"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Seurantatietojen poisto"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Pääavaimen tai indeksin poisto"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Tämä toiminto voi kestää kauan. Jatketaanko silti?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Olet POISTAMASSA KÄYTÖSTÄ BLOB-tietokannan!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Tarvittava tieto puuttuu lomakkeesta!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Tämä ei ole numero!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Palvelimen nimi puuttuu!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Käyttäjän nimi puuttuu!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Salasana puuttuu!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Salasanat eivät ole samat!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Lisää uusi käyttäjä"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Luo käyttäjä"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Käyttöoikeusten uudelleenlataus"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Poista valitut käyttäjät"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Sulje"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Peruuta"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Lataa"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Pyynnön käsittely"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Virhe pyynnön käsittelyssä"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Sarakkeen poisto"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Pääavaimen lisäys"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Kunnossa"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Muuta tietokantojen nimiä"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Lataa tietokanta uudestaan"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Tietokannan kopiointi"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Merkistökoodauksen vaihtaminen"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Taulussa on oltava vähintään yksi kenttä."
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Luo taulu"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Etsi"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Piilota SQL-kyselykenttä"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Näytä kyselykenttä"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Rivin muokkaus"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Tallenna"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Kätke"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "Hide query box"
msgid "Hide search criteria"
msgstr "Piilota SQL-kyselykenttä"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "Show query box"
msgid "Show search criteria"
msgstr "Näytä kyselykenttä"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Älä huomioi"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Valitse viitattava avain"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Valitse liiteavain"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Valitse perusavain tai uniikki avain"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Valitse näytettävä sarake"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Lisää asetus sarakkeelle"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Keksi salasana"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Keksi"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Vaihda salasana"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Lisää"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1172,256 +1210,262 @@ msgstr ""
"Uusin versio on %s, ja se on julkaistu %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Tarkista uusin versio"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Siirry tietokantaan"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Valmis"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Edellinen"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Seuraava"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Tänään"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Tammi"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Helmi"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Maalis"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Huhti"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Touko"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Kesä"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Heinä"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Elo"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Syys"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Loka"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Marras"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Joulu"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Joulu"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Su"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Ti"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Ke"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "To"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Pe"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "La"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "La"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "La"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Vko"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Tunti"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuutti"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekunti"
@@ -1474,33 +1518,33 @@ msgid "No index defined!"
msgstr "Indeksiä ei ole määritelty!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksit"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Uniikki"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Pakattu"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinaliteetti"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Kommentti"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muokkaa"
@@ -1524,32 +1568,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Tietokannat"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Virhe"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rivi(ä) muutettu."
msgstr[1] "%1$d rivi(ä) muutettu."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rivi(ä) poistettu."
msgstr[1] "%1$d rivi(ä) poistettu."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1642,11 +1686,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
-"%1$sasetusskriptillä%2$s."
+"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
+"$sasetusskriptillä%2$s."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1796,19 +1840,19 @@ msgstr "Taulut"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Tietoa"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Yhteensä"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Ylijäämä"
@@ -1894,16 +1938,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Palvelin"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Asetuksissa on virheellinen todennustapa:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan."
@@ -1938,7 +1982,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Ohjeet"
@@ -2086,7 +2130,7 @@ msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Rakenne"
@@ -2120,7 +2164,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää"
@@ -2280,7 +2324,7 @@ msgstr "Anna käyttäjien mukauttaa tätä arvoa"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Nollaa"
@@ -2416,7 +2460,7 @@ msgid "Compress on the fly"
msgstr "Pakkaa lennossa"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Asetustiedosto"
@@ -2553,7 +2597,7 @@ msgid "Character set of the file"
msgstr "Tiedoston merkistö"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Muoto"
@@ -2876,7 +2920,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Mukauta navigointikehyksen näkymää"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Palvelimet"
@@ -3695,7 +3739,7 @@ msgstr "SweKey-asetustiedosto"
msgid "Authentication method to use"
msgstr "Käytettävä todennustyyppi"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Todennustyyppi"
@@ -4231,9 +4275,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Salasana"
@@ -4253,8 +4297,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Käyttäjänimi"
@@ -4381,7 +4425,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Yksityiskohtaiset peräkkäiset lauseet"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Tarkista uusin versio"
@@ -4541,7 +4585,7 @@ msgstr "Tapahtumat"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nimi"
@@ -4564,8 +4608,8 @@ msgid "Designer"
msgstr "Suunnittelija"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Käyttöoikeudet"
@@ -4577,7 +4621,7 @@ msgstr "Rutiinit"
msgid "Return type"
msgstr "Paluutyyppi"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4599,23 +4643,23 @@ msgstr ""
"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty "
"oikein)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Lisätiedot..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Vaihda salasana"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Ei salasanaa"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Kirjoita uudelleen"
@@ -4639,7 +4683,7 @@ msgid "Create"
msgstr "Luo"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Ei käyttöoikeuksia"
@@ -4774,8 +4818,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
@@ -4798,7 +4842,7 @@ msgstr "Pakkaus"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Ei mitään"
@@ -5002,7 +5046,7 @@ msgstr "Lajittele avaimen mukaan"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Valinnat"
@@ -5041,66 +5085,66 @@ msgstr "Näytä BLOB-sisältö"
msgid "Browser transformation"
msgstr "Selaimen muunnos (transformation)"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Rivi on poistettu"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Lopeta"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "lauseessa"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Näkyvillä rivit "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "yhteensä"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "kysely kesti %01.4f sek."
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Muokkaa"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Kyselytulosten toimenpiteet"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Tulostusversio (kokonaisin tekstein)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Näytä PDF-kaavio"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Luo käyttäjä"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Linkkiä ei löydy"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versiotiedot"
@@ -5536,8 +5580,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5664,9 +5708,9 @@ msgstr "Mahdolliset MIME-tyypit"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Palvelin"
@@ -5677,7 +5721,7 @@ msgid "Generation Time"
msgstr "Luontiaika"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Palvelimen versio"
@@ -6026,7 +6070,32 @@ msgstr "Ei mitään"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Pe"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Lähetä"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Apply index(s)"
+msgid "Add prefix"
+msgstr "Käytä indeksiä/indeksejä"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Ei muutoksia"
@@ -6333,8 +6402,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Käyttäjänimi"
@@ -6355,7 +6424,7 @@ msgstr "Muuttuja"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Arvo"
@@ -6375,34 +6444,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Lisää alikahdennuksen käyttäjä"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Kuka tahansa käyttäjä"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Käytä tekstikenttää"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Mikä tahansa palvelin"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Paikallinen"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Tämä isäntä"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Käytä isäntätaulua"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6470,7 +6539,7 @@ msgstr "Attribuutit"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Lisätiedot"
@@ -6573,12 +6642,12 @@ msgid "Toggle scratchboard"
msgstr "Näytä/kätke luonnospöytä"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tuntematon kieli: %1$s."
@@ -6655,7 +6724,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Suorita SQL-kyselyjä tietokannassa %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Tyhjennä"
@@ -6689,10 +6758,6 @@ msgstr "Erotinmerkki"
msgid " Show this query here again "
msgstr " Näytä kyselylause uudelleen "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Lähetä"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Näytä"
@@ -6701,7 +6766,7 @@ msgstr "Näytä"
msgid "Location of the text file"
msgstr "Tiedoston sijainti"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "palvelimen lähetyshakemisto"
@@ -6750,19 +6815,19 @@ msgstr "ALOITA RAW"
msgid "END RAW"
msgstr "LOPETA RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Merkkijonon lopusta puuttuu lainausmerkki"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Tunniste ei kelpaa"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Tuntematon välimerkki"
@@ -6816,7 +6881,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeksi"
@@ -6864,12 +6929,12 @@ msgid "As defined:"
msgstr "Määritelty:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Perusavain"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Koko teksti"
@@ -6883,7 +6948,7 @@ msgstr ""
"tekee."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Tallennusmoottori"
@@ -6891,13 +6956,13 @@ msgstr "Tallennusmoottori"
msgid "PARTITION definition"
msgstr "PARTITION-määritelmä"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Lisää sarake/sarakkeita"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7126,84 +7191,84 @@ msgstr "ZIP-paketista ei löytynyt yhtään tiedostoa!"
msgid "Error in ZIP archive:"
msgstr "Virhe ZIP-paketissa:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Yleiset relaatio-ominaisuudet"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL-yhteyden aakkosjärjestys"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Muut ydinasetukset"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "settings"
msgid "More settings"
msgstr "asetukset"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokollan versio"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Käyttäjä"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-palvelimen merkistö"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Verkkopalvelin"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL-asiakasversio"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP-laajennus"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Näytä PHP:n asetustiedot"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdminin kotisivut"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Attribuutit"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Vienti"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Ei muutoksia"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7214,7 +7279,7 @@ msgstr ""
"(root ilman salasanaa). Tällaisin asetuksin MySQL-palvelin on altis "
"hyökkäyksille. Tämä tietoturvariski on syytä korjata pikimmiten!"
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7224,7 +7289,7 @@ msgstr ""
"valinta ei sovi yhteen phpMyAdminin kanssa ja saattaa johtaa tietojen "
"katoamiseen!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7234,7 +7299,7 @@ msgstr ""
"olevan käytössä. Ilman mbstring-laajennusta phpMyAdmin ei osaa jaotella "
"merkkijonoja oikein, ja tästä saattaa koitua odottamattomia seurauksia."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7246,7 +7311,7 @@ msgstr ""
"phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy "
"nopeammin kuin phpMyAdminissa on määritetty."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7262,11 +7327,11 @@ msgstr ""
"phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy "
"nopeammin kuin phpMyAdminissa on määritetty."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7276,7 +7341,7 @@ msgstr ""
"hakemistossa. Sinun tulee poistaa kansio, kun phpMyAdminin asetukset on "
"määritetty."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7288,14 +7353,14 @@ msgstr ""
"Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. "
"Katso %slisätietoja%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7304,7 +7369,7 @@ msgstr ""
"PHP:n MySQL-kirjaston versio %s poikkeaa MySQL-palvelimen versiosta %s. "
"Tästä voi koitua arvaamattomia seurauksia."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7327,14 +7392,14 @@ msgstr "Suodatin"
msgid "filter tables by name"
msgstr "Lajittele taulu"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Luo taulu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Valitse tietokanta"
@@ -7740,75 +7805,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Sallii uusien tietokantojen ja taulujen luomisen."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Sallii talletettujen rutiinien luomisen."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Sallii uusien taulujen luomisen."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Sallii tilapäisten taulujen luomisen."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Sallii uusien näkymien luomisen."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Sallii tietojen poistamisen."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Sallii tietokantojen ja taulujen poistamisen."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Sallii taulujen poistamisen."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Sallii talletettujen rutiinien suorittamisen."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Sallii tietojen tuomisen ja viemisen."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7816,33 +7881,33 @@ msgstr ""
"käyttöoikeustauluja uudestaan."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Sallii indeksien luomisen ja poistamisen."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Sallii tietojen lisäämisen ja korvaamisen."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7850,60 +7915,60 @@ msgstr ""
"Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai "
"tietokantoihin muutoksia tekeviä komentoja tunnin aikana."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin "
"tyhjentämisen."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Sallii tietojen lukemisen."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Sallii koko tietokantaluettelon käytön."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Sallii palvelimen sammuttamisen."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7914,12 +7979,12 @@ msgstr ""
"muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Sallii tietojen muuttamisen."
@@ -7934,195 +7999,195 @@ msgctxt "None privileges"
msgid "None"
msgstr "Ei mitään"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Taulukohtaiset käyttöoikeudet"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi! "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globaalit käyttöoikeudet"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Tietokantakohtaiset käyttöoikeudet"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Hallinta"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globaalit käyttöoikeudet"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Tietokantakohtaiset käyttöoikeudet"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resurssirajoitukset"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Kirjautumistiedot"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Älä vaihda salasanaa"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Käyttäjiä ei ole."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Käyttäjä %s on jo olemassa!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Uusi käyttäjä lisätty."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, 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:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Käyttäjän %s käyttöoikeudet on poistettu"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Käyttäjän %s salasanan vaihto onnistui."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Poistetaan: %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Yhtään käyttäjää ei valittu poistettavaksi!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Ladataan käyttöoikeuksia uudelleen"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Valitsemiesi käyttäjien poisto onnistui."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Käyttöoikeuksien uudelleenlataus onnistui."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Muokkaa käyttöoikeuksia"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Pura käyttöoikeudet"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Mikä tahansa"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Käyttäjien yleiskatsaus"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Valtuudet (GRANT)"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Lisää uusi käyttäjä"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Poista valitut käyttäjät"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Sarakekohtaiset käyttöoikeudet"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Lisää käyttöoikeudet seuraavaan tauluun"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... säilytä vanha käyttäjä."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... poista vanha käyttäjä käyttäjätauluista."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -8130,45 +8195,45 @@ msgstr ""
" ... poista vanha käyttäjä käyttäjätauluista ja lataa käyttöoikeudet sen "
"jälkeen uudelleen."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Tietokanta käyttäjälle"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ei mitään"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Anna tietokannalle "%s" kaikki oikeudet"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globaali"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "tietokantakohtainen"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "korvausmerkki"
@@ -9347,7 +9412,7 @@ msgstr "Tämän istunnon arvo"
msgid "Global value"
msgstr "Globaali arvo"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Lataa koneelle"
@@ -9392,55 +9457,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Salaamaton yhteys"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration file"
+msgid "Configuration saved."
+msgstr "Asetustiedosto"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Yleiskatsaus"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Näytä piilotetut sanomat (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Palvelimia ei ole määritelty"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Uusi palvelin"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Oletuskieli"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "anna käyttäjän valita"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- ei mitään -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Oletuspalvelin"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Rivin loppu"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Näytä"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Lataa asetukset"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdminin verkkosivut"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Lahjoita"
@@ -9645,9 +9722,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9764,65 +9841,65 @@ msgstr "Taulun %1$s muuttaminen onnistui."
msgid "Function"
msgstr "Funktio"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Pituudestaan johtuen
tätä saraketta ei voine muokata "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Poista BLOB-tietokantaviittaus"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binääritietoa - älä muokkaa"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Lähetä BLOB-tietokantaan"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Lisää uutena rivinä"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Näytetään SQL-kysely"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ja sen jälkeen"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Takaisin"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Lisää uusi rivi"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Palaa tälle sivulle"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Muokkaa seuraavaa riviä"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Käytä arvojen välillä siirtymiseen sarkainta. Ctrl- ja nuolinäppäimillä voi "
"siirtyä mihin tahansa kohtaan."
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9985,7 +10062,7 @@ msgstr "(\"PRIMARY\" saa olla vain ja ainoastaan perusavaimen nimenä!)"
msgid "Add to index %s column(s)"
msgstr "Lisää indeksiin %s sarake(tta)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Sarakkeiden määrän on oltava nollaa suurempi."
@@ -10011,103 +10088,103 @@ msgstr "Taulu %s on kopioitu uuteen tauluun %s."
msgid "The table name is empty!"
msgstr "Taulun nimi puuttuu!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Lajittele taulu"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(yksitellen)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Siirrä taulu toiseen tauluun (tietokanta.taulu):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Taulun valinnat"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Nimeä taulu uudelleen"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Siirry kopioituun tauluun"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Taulun ylläpito"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Eheytä taulu"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Taulun %s välimuisti on tyhjennetty"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Poista tämän taulun seurantatiedot"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Siirry tietokantaan"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Osituksen ylläpito"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Ositus %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analysoi"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Tarkasta"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimoi"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Rakenna uudestaan"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Korjaa"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Poista ositus"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Tarkista viitteiden eheys:"
@@ -10115,39 +10192,39 @@ msgstr "Tarkista viitteiden eheys:"
msgid "Show tables"
msgstr "Näytä taulut"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Levytilan käyttö"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Käyttö"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Pätevä"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Rivitilastot"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Tieto"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "staattinen"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynaaminen"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Rivin pituus"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Rivin koko "
@@ -10239,57 +10316,57 @@ msgstr "Ei mitään"
msgid "Column %s has been dropped"
msgstr "Taulu %s on poistettu"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Sarakkeelle %s on luotu perusavain"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Sarakkeelle %s on lisätty indeksi"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Näytä versiot"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relaationäkymä"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Esitä taulun rakenne"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add column(s)"
msgid "Add column"
msgstr "Lisää sarake/sarakkeita"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Taulun loppuun"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Taulun alkuun"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Jälkeen sarakkeen: %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Luo %s:n sarakkeen indeksi"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "ositettu"
@@ -10317,7 +10394,7 @@ msgstr "Kohteen %s.%s seuranta, käytössä on versio %s."
msgid "SQL statements executed."
msgstr "SQL-lauseet suoritettu."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -10325,101 +10402,131 @@ msgstr ""
"Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, "
"että sinulla on oikeudet toiminnon suorittamiseen."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Version %s kuvaus (SQL-koodi)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Seuraa näitä tiedon määritelmän lauseita:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Ignore errors"
+msgid "Query error"
+msgstr "Älä välitä virheistä"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Seuraa näitä tiedon käsittelyn lauseita:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Seurantalauseet"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Poista tämän taulun seurantatiedot"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Ei tietokantoja"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Päiväys"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Tiedon määritelmän lause"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Tiedon käsittelyn lause"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL-vedos (tiedoston lataus)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL-vedos"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL-suoritus"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Vie kohteena %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Näytä versiot"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versio"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Poista kohteen %s.%s seuranta"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Poista käytöstä nyt"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Ota käyttöön kohteen %s.%s seuranta"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Ota käyttöön nyt"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Luo versio %s kohteesta %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Seuraa näitä tiedon määritelmän lauseita:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Seuraa näitä tiedon käsittelyn lauseita:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Luo versio"
diff --git a/po/fr.po b/po/fr.po
index 2a91c048a9..f8a14e1ee1 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-02-10 19:23+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
-"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Tout afficher"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Rechercher"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Rechercher"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Exécuter"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nom de l'index"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "La base de données %1$s a été créée."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Commentaire sur la base de données: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Commentaires sur la table"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Commentaires sur la table"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Colonne"
@@ -150,11 +150,11 @@ msgstr "Colonne"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -164,8 +164,8 @@ msgstr "Type"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -175,7 +175,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Défaut"
@@ -198,39 +198,40 @@ msgstr "Relié à"
msgid "Comments"
msgstr "Commentaires"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Non"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Oui"
@@ -242,8 +243,8 @@ msgstr "Imprimer"
msgid "View dump (schema) of database"
msgstr "Voir une exportation (schéma) de la base de données"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Aucune table n'a été trouvée dans cette base."
@@ -269,78 +270,78 @@ msgstr "La base de données %s a été renommée en %s"
msgid "Database %s has been copied to %s"
msgstr "La base de données %s a été copiée sur %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Changer le nom de la base de données pour"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Commande"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Supprimer la base de données"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "La base de données %s a été effacée."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Supprimer la base de données (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copier la base de données vers"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Structure seule"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structure et données"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Données seulement"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Faire CREATE DATABASE avant la copie"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Ajouter %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Inclure la valeur courante de l'AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Inclure les contraintes de clés étrangères"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Aller à la base de données copiée"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Interclassement"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -349,7 +350,7 @@ msgstr ""
"Le stockage de configurations phpMyAdmin a été désactivé. Pour une analyse "
"du problème, cliquez %sici%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Éditer ou exporter un schéma relationnel"
@@ -357,17 +358,17 @@ msgstr "Éditer ou exporter un schéma relationnel"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Table"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Lignes"
@@ -383,21 +384,21 @@ msgstr "utilisé"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Création"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Dernière modification"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Dernière vérification"
@@ -408,97 +409,90 @@ msgid_plural "%s tables"
msgstr[0] "%s table"
msgstr[1] "%s tables"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Votre requête SQL a été exécutée avec succès"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Vous devez choisir au moins une colonne à afficher"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Passer en"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "mode visuel"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Tri"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Croissant"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Décroissant"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Afficher"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Critère"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ajouter"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Et"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Effacer"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ou"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modifier"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Ajouter/effacer des lignes"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Ajouter/effacer des colonnes"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Mise-à-jour de la requête"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Utiliser les tables"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Requête SQL sur la base %s: "
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Exécuter la requête"
@@ -539,7 +533,7 @@ msgstr[1] "%s occurences dans la table %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Afficher"
@@ -548,14 +542,15 @@ msgstr "Afficher"
msgid "Delete the matches for the %s table?"
msgstr "Supprimer de la table %s les occurences?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Effacer"
@@ -594,17 +589,17 @@ msgstr "Dans la colonne : "
msgid "No tables found in database"
msgstr "Aucune table n'a été trouvée dans cette base."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "La table %s a été vidée"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "La vue %s a été supprimée"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "La table %s a été effacée"
@@ -617,14 +612,14 @@ msgstr "Le suivi est actif."
msgid "Tracking is not active."
msgstr "Le suivi n'est pas activé."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
-"%sdocumentation%s."
+"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %"
+"sdocumentation%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -647,22 +642,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Pour la sélection :"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Tout cocher"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Tout décocher"
@@ -671,16 +666,16 @@ msgid "Check tables having overhead"
msgstr "Cocher tables avec pertes"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporter"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Version imprimable"
@@ -692,28 +687,46 @@ msgstr "Vider"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Supprimer"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Vérifier la table"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiser la table"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Réparer la table"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyser la table"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Aller à la table"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Remplacer les données de la table avec le fichier"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Remplacer les données de la table avec le fichier"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dictionnaire de données"
@@ -727,10 +740,10 @@ msgstr "Tables faisant l'objet d'un suivi"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Base de données"
@@ -738,36 +751,36 @@ msgstr "Base de données"
msgid "Last version"
msgstr "Dernière version"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Créé"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Mis à jour"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "État"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Action"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Supprimer les données de suivi de cette table"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "actif"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "non activé"
@@ -775,11 +788,11 @@ msgstr "non activé"
msgid "Versions"
msgstr "Versions"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Rapport de suivi"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Instantané"
@@ -787,8 +800,8 @@ msgstr "Instantané"
msgid "Untracked tables"
msgstr "Tables ne faisant pas l'objet d'un suivi"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Suivre la table"
@@ -849,8 +862,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
@@ -924,6 +937,13 @@ msgstr ""
"signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la "
"limite de temps de PHP ne soit augmentée."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Votre requête SQL a été exécutée avec succès"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -950,225 +970,243 @@ msgstr "Cliquer pour désélectionner"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "La commande «DROP DATABASE» est désactivée."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Voulez-vous vraiment effectuer "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Destruction d'évènement"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Destruction de procédure"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Suppression des données de suivi"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Destruction de clé primaire / index"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Cette opération pourrait être longue. Procéder quand même ?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Vous allez DÉSACTIVER un dépôt BLOB !"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Êtes-vous certain de vouloir désactiver toutes les références BLOB pour la "
"base %s ?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Formulaire incomplet !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ce n'est pas un nombre !"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Le nom de serveur est vide !"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Le nom d'utilisateur est vide !"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Le mot de passe est vide !"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Les mots de passe doivent être identiques !"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Ajouter un utilisateur"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Créer un compte d'utilisateur"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Chargement des privilèges en cours"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Effacement des utilisateurs sélectionnés"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Fermer"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Annuler"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Chargement"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Requête en traitement"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Erreur dans le traitement de la requête"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Suppression de la colonne"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Ajout de clé primaire"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Changement de nom de la base de données"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Rafraîchir la base de données"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Copie de la base de données"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Changement du jeu de caractères"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "La table doit comporter au moins une colonne."
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Nouvelle table"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "En recherche"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Cacher zone SQL"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Montrer zone SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Éditer en place"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Sauvegarder"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Cacher"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Cacher les critères de recherche"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Afficher les critères de recherche"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Sélectionnez la clé référencée"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Choisissez la clé étrangère"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Veuillez choisir la clé primaire ou un index unique"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Colonne descriptive"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Ajouter une option pour la colonne"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Générer un mot de passe"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Générer"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Modifier le mot de passe"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "plus"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1178,254 +1216,260 @@ msgstr ""
"une mise à niveau. La version la plus récente est %s, publiée le %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", dernière version stable :"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Aller à la base de données"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Fermer"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Précédent"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Suivant"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Aujourd'hui"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Janvier"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Février"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Mars"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Avril"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Juin"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Juillet"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Août"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Septembre"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Octobre"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Novembre"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Décembre"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Dimanche"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Lundi"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Mardi"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Mercredi"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Jeudi"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Vendredi"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Samedi"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sam"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Je"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Heure"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Seconde"
@@ -1480,33 +1524,33 @@ msgid "No index defined!"
msgstr "Aucun index n'est défini !"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Index"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unique"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Compressé"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinalité"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Commentaire"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifier"
@@ -1530,32 +1574,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Bases de données"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Erreur"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d ligne affectée."
msgstr[1] "%1$d lignes affectées."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d ligne supprimée."
msgstr[1] "%1$d lignes supprimées."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1649,8 +1693,8 @@ msgstr "Bienvenue sur %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
@@ -1802,19 +1846,19 @@ msgstr "Tables"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Données"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Perte"
@@ -1906,17 +1950,17 @@ msgstr ""
"configuration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Serveur"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
"Le fichier de configuration contient un type d'authentification invalide :"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vous devriez utiliser %s en version %s ou plus récente."
@@ -1951,7 +1995,7 @@ msgstr "fr"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentation"
@@ -2099,7 +2143,7 @@ msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Structure"
@@ -2134,7 +2178,7 @@ msgstr ""
"Choisissez depuis le répertoire de téléchargement du serveur web %s :"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Le répertoire de transfert est inaccessible"
@@ -2293,7 +2337,7 @@ msgstr "Permettre aux utilisateurs de personnaliser cette valeur"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Réinitialiser"
@@ -2422,7 +2466,7 @@ msgid "Compress on the fly"
msgstr "Compression à la volée"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Fichier de configuration"
@@ -2552,7 +2596,7 @@ msgid "Character set of the file"
msgstr "Jeu de caractères du fichier"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2857,7 +2901,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Personnaliser l'apparence du panneau de navigation"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Serveurs"
@@ -3633,7 +3677,7 @@ msgstr "Fichier de configuration SweKey"
msgid "Authentication method to use"
msgstr "Type d'authentification"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Type d'authentification"
@@ -4152,9 +4196,9 @@ msgstr "Requiert que le validateur SQL soit activé"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Mot de passe"
@@ -4178,8 +4222,8 @@ msgstr ""
"Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] "
"par défaut)"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Utilisateur"
@@ -4308,7 +4352,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Détails pour les requêtes multi-énoncés"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Vérifier la présence d'une nouvelle version"
@@ -4458,7 +4502,7 @@ msgstr "Événements"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nom"
@@ -4481,8 +4525,8 @@ msgid "Designer"
msgstr "Concepteur"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilèges"
@@ -4494,7 +4538,7 @@ msgstr "Procédures stockées"
msgid "Return type"
msgstr "Type retourné"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4518,23 +4562,23 @@ msgstr ""
"(ou l'interface de connexion vers le serveur MySQL local n'est pas "
"correctement configurée)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Détails..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Modifier le mot de passe"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Aucun mot de passe"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Entrer à nouveau"
@@ -4556,7 +4600,7 @@ msgid "Create"
msgstr "Créer"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Aucun privilège"
@@ -4660,8 +4704,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
@@ -4683,7 +4727,7 @@ msgstr "Compression:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Aucune"
@@ -4861,7 +4905,7 @@ msgstr "Trier sur l'index"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Options"
@@ -4894,62 +4938,62 @@ msgstr "Montrer le contenu BLOB"
msgid "Browser transformation"
msgstr "Transformation"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Copier"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "La ligne a été effacée"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Supprimer"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "dans la requête"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Affichage des lignes"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Traitement en %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Modifier"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Opérations sur les résultats de la requête"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Version imprimable (avec textes complets)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Afficher le graphique"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Créer une vue"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Lien absent"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Version"
@@ -5403,8 +5447,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"La documentation de PBXT et des informations additionnelles sont disponibles "
"sur %sle site de PrimeBase XT%s."
@@ -5503,9 +5547,9 @@ msgstr "Afficher les types MIME"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Client"
@@ -5516,7 +5560,7 @@ msgid "Generation Time"
msgstr "Généré le "
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Version du serveur"
@@ -5555,8 +5599,7 @@ msgstr ""
#: libraries/export/sql.php:35
msgid "Additional custom header comment (\\n splits lines):"
-msgstr ""
-"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
+msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
#: libraries/export/sql.php:37
msgid ""
@@ -5880,7 +5923,32 @@ msgstr "Aucune"
msgid "Convert to Kana"
msgstr "Conversion en kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Ve"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Exécuter"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Ajouter un index"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Pas de modifications"
@@ -6192,8 +6260,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nom d'utilisateur"
@@ -6214,7 +6282,7 @@ msgstr "Variable"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valeur"
@@ -6234,34 +6302,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Ajouter un utilisateur pour la réplication vers l'esclave"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Tout utilisateur"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Entrez une valeur"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Tout client"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ce serveur"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Utiliser la table Host"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6325,7 +6393,7 @@ msgstr "Attributs"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6418,12 +6486,12 @@ msgid "Toggle scratchboard"
msgstr "Éditeur visuel"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Langue inconnue: %1$s."
@@ -6496,7 +6564,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Exécuter une ou des requêtes SQL sur la base %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Vider"
@@ -6528,10 +6596,6 @@ msgstr "Délimiteur"
msgid " Show this query here again "
msgstr "Afficher à nouveau la requête après exécution"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Exécuter"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Voir uniquement"
@@ -6540,7 +6604,7 @@ msgstr "Voir uniquement"
msgid "Location of the text file"
msgstr "Emplacement du fichier texte"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "répertoire de transfert du serveur web"
@@ -6590,19 +6654,19 @@ msgstr "Début des informations sur l'anomalie"
msgid "END RAW"
msgstr "Fin des informations sur l'anomalie"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Un guillemet oblique a été ajouté à la fin de la requête!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Apostrophe non fermé"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identificateur invalide"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Ponctuation invalide"
@@ -6613,8 +6677,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions "
-"PHP nécessaires ont bien été installées tel que décrit dans la "
-"%sdocumentation%s."
+"PHP nécessaires ont bien été installées tel que décrit dans la %"
+"sdocumentation%s."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6651,7 +6715,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6698,12 +6762,12 @@ msgid "As defined:"
msgstr "Tel que défini :"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primaire"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Texte entier"
@@ -6717,7 +6781,7 @@ msgstr ""
"demander à son auteur, des détails sur %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Moteur de stockage"
@@ -6725,12 +6789,12 @@ msgstr "Moteur de stockage"
msgid "PARTITION definition"
msgstr "Définition de PARTITION"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Ajouter %s colonne(s)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Vous devez ajouter au moins une colonne."
@@ -6915,73 +6979,73 @@ msgstr "Aucun fichier présent dans l'archive ZIP !"
msgid "Error in ZIP archive:"
msgstr "Erreur rencontrée dans l'archive ZIP :"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Paramètres généraux"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Interclassement pour la connexion MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Paramètres d'affichage"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Plus de paramètres"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Version du protocole"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Utilisateur"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Jeu de caractères pour MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Serveur web"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Version du client MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Extension PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Afficher les informations relatives à PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Site officiel"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Contribuer"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Obtenir de l'aide"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Liste des changements"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6993,7 +7057,7 @@ msgstr ""
"serveur MySQL est donc ouvert aux intrusions, et vous devriez corriger ce "
"problème de sécurité."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7003,7 +7067,7 @@ msgstr ""
"option est incompatible avec phpMyAdmin et peut nuire au traitement des "
"données !"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7014,7 +7078,7 @@ msgstr ""
"phpMyAdmin est incapable de gérer correctement les caractères et il peut en "
"résulter des problèmes."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7026,7 +7090,7 @@ msgstr ""
"que la durée du cookie configurée dans phpMyAdmin; donc, votre session de "
"travail expirera plus tôt."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7035,13 +7099,13 @@ msgstr ""
"LoginCookieValidity; donc, votre session de travail expirera plus tôt que la "
"valeur configurée dans phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Vous devez ajouter dans le fichier de configuration une phrase de passe "
"secrète (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7051,7 +7115,7 @@ msgstr ""
"présent dans votre répertoire phpMyAdmin. Vous devriez le supprimer quand "
"vous aurez terminé la configuration de phpMyAdmin."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7061,7 +7125,7 @@ msgstr ""
"certaines fonctionnalités ont été désactivée. Pour en connaître la raison, "
"cliquez %sici%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7071,7 +7135,7 @@ msgstr ""
"fonctions de phpMyAdmin seront manquantes. Par exemple le cadre de "
"navigation ne sera pas mis à jour automatiquement."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7080,7 +7144,7 @@ msgstr ""
"La version de votre bibliothèque MySQL (%s) de PHP diffère de la version de "
"votre serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7101,12 +7165,12 @@ msgstr "Filtre"
msgid "filter tables by name"
msgstr "filtrer par nom de table"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Nouvelle table"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Choisissez une base de données"
@@ -7477,79 +7541,79 @@ msgid "Includes all privileges except GRANT."
msgstr "Tous les privilèges sauf GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permission de modifier la structure des tables existantes."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Permission de modifier et de supprimer des procédures stockées."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permission de créer des bases de données et des tables."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Permission de créer des procédures stockées."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permission de créer des tables."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permission de créer des tables temporaires."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Permission de créer des vues."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permission de détruire des données."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permission d'effacer des bases de données et des tables."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permission d'effacer des tables."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
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:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Permission d'exécuter des procédures stockées."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7557,38 +7621,38 @@ msgstr ""
"recharger les privilèges."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permission de créer et d'effacer des index."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permission d'ajouter et de remplacer des données."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
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:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7596,63 +7660,63 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Permission de voir les processus de tous les utilisateurs"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Non effectif dans cette version de MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Nécessaire pour les esclaves (système de duplication)."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permission de lire des données."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
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:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Permission d'exécuter SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permission d'arrêter le serveur."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7664,12 +7728,12 @@ msgstr ""
"destruction de processus."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Permission de créer et de supprimer des déclencheurs"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permission de changer des données."
@@ -7682,190 +7746,190 @@ msgctxt "None privileges"
msgid "None"
msgstr "Aucun"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilèges spécifiques à une table"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
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:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Privilèges globaux"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilèges spécifiques à une base de données"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Privilèges globaux"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilèges spécifiques à une base de données"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limites de ressources"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Information pour la connexion"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Conserver le mot de passe"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Aucun utilisateur n'a été trouvé."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "L'utilisateur %s existe déjà !"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Vous avez ajouté un utilisateur."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Vous avez modifié les privilèges pour %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Vous avez révoqué les privilèges pour %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Le mot de passe de %s a été changé."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Destruction de %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Chargement des privilèges en cours"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Les utilisateurs sélectionnés ont été effacés."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Les privilèges ont été rechargés."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Changer les privilèges"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Révoquer"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "N'importe quel"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Vue d'ensemble des utilisateurs"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr " «Grant »"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Ajouter un utilisateur"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Effacer les utilisateurs sélectionnés"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilèges de colonnes"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Ajouter des privilèges sur cette base de données"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Ajouter des privilèges sur cette table"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Changement des informations de connexion / Copie d'utilisateur"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
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:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... conserver intact l'ancien utilisateur."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... supprimer l'ancien utilisateur."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7873,44 +7937,44 @@ msgstr ""
" ... supprimer l'ancien utilisateur, puis recharger les privilèges au "
"serveur."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Base de données pour cet utilisateur"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Aucune"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Donner les privilèges passepartout (utilisateur\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, 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:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Utilisateurs ayant accès à "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "spécifique à cette base de données"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "passepartout"
@@ -9071,7 +9135,7 @@ msgstr "Valeur pour la session"
msgid "Global value"
msgstr "Valeur globale"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Télécharger"
@@ -9110,55 +9174,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Connexion non sécurisée"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Stockage de configurations"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Survol"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Afficher les messages cachés (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Aucun serveur n'est configuré"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nouveau serveur"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Langue par défaut"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "laisser l'utilisateur choisir"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- aucun -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Serveur par défaut"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Fin de ligne"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Afficher"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Charger"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Site de phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Faire un don"
@@ -9234,8 +9310,8 @@ msgid ""
msgstr ""
"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant "
"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez "
-"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
-"%s."
+"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%"
+"s."
#: setup/lib/index.lib.php:252
msgid ""
@@ -9287,8 +9363,8 @@ msgid ""
msgstr ""
"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 "
"secondes peut causer des interruptions de la session de travail si le "
-"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
-"%d)."
+"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %"
+"d)."
#: setup/lib/index.lib.php:262
#, php-format
@@ -9307,8 +9383,8 @@ msgid ""
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si vous utilisez l'authentification cookie et que le paramètre %sLogin "
-"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity"
-"%s doit avoir une valeur plus petite ou égale à celui-ci."
+"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%"
+"s doit avoir une valeur plus petite ou égale à celui-ci."
#: setup/lib/index.lib.php:266
#, php-format
@@ -9318,8 +9394,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Si vous l'estimez nécessaire, utilisez des paramètres de protection - "
-"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
+"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
+"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP "
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
"compris, sont connectés."
@@ -9424,64 +9500,64 @@ msgstr "La table %1$s a été modifiée avec succès."
msgid "Function"
msgstr "Fonction"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
"Il est possible que cette colonne
ne soit pas éditable
en raison "
"de sa longueur"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Supprimer les références au dépôt BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binaire - ne pas éditer"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Télécharger vers le dépôt BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Sauvegarder une nouvelle ligne"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Afficher l'énoncé d'insertion"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "et ensuite"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Retourner à la page précédente"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Insérer une nouvelle ligne"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Demeurer sur cette page"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Modifier la ligne suivante"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches "
"pour aller n'importe où"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Continuer l'insertion avec %s lignes"
@@ -9637,7 +9713,7 @@ msgstr "(«PRIMARY» doit et ne peut être que le nom d'une clé primaire
msgid "Add to index %s column(s)"
msgstr "Ajouter à l'index %s colonne(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Le nombre de champs doit être plus grand que zéro."
@@ -9663,97 +9739,97 @@ msgstr "La table %s a été copiée vers %s."
msgid "The table name is empty!"
msgstr "Le nom de la table est vide"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Ordonner la table par"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(à refaire après insertions/destructions)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Déplacer la table vers (base.table) : "
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Options pour cette table"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Changer le nom de la table pour"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copier la table vers (base.table) :"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Aller à la table copiée"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Maintenance de la table"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Défragmenter la table"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "La table %s a été rechargée"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Recharger la table (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Supprimer les données ou la table"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Vider la table (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Supprimer la table (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Gestion des partitions"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partition %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analyser"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Vérifier"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimiser"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Reconstruire"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Réparer"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Supprimer le partitionnement"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Vérifier l'intégrité référentielle"
@@ -9761,39 +9837,39 @@ msgstr "Vérifier l'intégrité référentielle"
msgid "Show tables"
msgstr "Afficher les tables"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Espace utilisé"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Espace"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effectif"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistiques"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Information"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statique"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamique"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Longueur enr."
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Taille enr. "
@@ -9874,52 +9950,52 @@ msgstr "Aucune"
msgid "Column %s has been dropped"
msgstr "La colonne %s a été effacée"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Une clé primaire a été ajoutée sur %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Un index a été ajouté sur %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Montrer d'autres actions"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Gestion des relations"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Suggérer des optimisations quant à la structure de la table"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Ajouter une colonne"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "En fin de table"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "En début de table"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Après %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Créer un index sur %s colonnes"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partitionné"
@@ -9947,7 +10023,7 @@ msgstr "Le suivi pour %s.%s , version %s est activé."
msgid "SQL statements executed."
msgstr "Énoncés SQL exécutés."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9956,101 +10032,131 @@ msgstr ""
"temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à "
"cette opération."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Enlevez les deux lignes suivantes si elles sont inutiles."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Instantané de la version %s (code SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Suivre les énoncés de définition de données suivants :"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Collecter les erreurs"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Suivre les énoncés de manipulation de données suivants :"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Suivi des énoncés"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Montrer %s depuis le %s jusqu'au %s par l'utilisateur %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Supprimer les données de suivi de cette table"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Aucune base de données"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Date"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Énoncé de définition de données"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Énoncé de manipulation de données"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Exportation SQL (télécharger)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Exportation SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Cette option remplacera votre table et son contenu."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Exécution SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exporter en tant que %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Montrer les versions"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Version"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Désactiver le suivi de %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Désactiver maintenant"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Activer le suivi de %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Activer maintenant"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Créer la version %s de %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Suivre les énoncés de définition de données suivants :"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Suivre les énoncés de manipulation de données suivants :"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Créer une version"
diff --git a/po/gl.po b/po/gl.po
index 9ef3a1eee7..004e651772 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: galician \n"
-"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Ver todos os rexistros"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Procurar"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Procurar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executar"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nome chave"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Creouse a base de datos %1$s."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentario da base de datos: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Comentarios da táboa"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Comentarios da táboa"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -152,11 +152,11 @@ msgstr "Nomes das columnas"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -166,8 +166,8 @@ msgstr "Tipo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulo"
@@ -177,7 +177,7 @@ msgstr "Nulo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Padrón"
@@ -200,39 +200,40 @@ msgstr "Vincúlase con"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Non"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Si"
@@ -244,8 +245,8 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver o esquema do volcado da base de datos"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Non se achou ningunha táboa na base de datos"
@@ -271,82 +272,82 @@ msgstr "Mudóuselle o nome á base de datos %s para %s"
msgid "Database %s has been copied to %s"
msgstr "Copiuse a base de datos %s para %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Mudar o nome da base de datos para"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Orde"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Mudar o nome da base de datos para"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Eliminouse a base de datos %s."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
msgstr "Ir á base de datos"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar a base de datos para"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Só a estrutura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estrutura e datos"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Só os datos"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREAR UNHA BASE DE DATOS antes de copiar"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Engadir %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Engadir o valor incremental (AUTO_INCREMENT)"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Engadir limitacións"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pasar á base de datos copiada"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Orde alfabética"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -358,7 +359,7 @@ msgstr ""
"Desactivouse a funcionalidade adicional para o traballo con táboas "
"vinculadas. Para saber o por que, prema %saquí%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -368,17 +369,17 @@ msgstr "Esquema relacional"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Táboa"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Fileiras"
@@ -394,21 +395,21 @@ msgstr "en uso"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Creación"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Actualización máis recente"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Comprobación máis recente"
@@ -420,101 +421,94 @@ msgid_plural "%s tables"
msgstr[0] "%s táboa(s)"
msgstr[1] "%s táboa(s)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "A seu orde de SQL executouse sen problemas"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Ten que escoller polo menos unha columna para mostrar"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Ordenar"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascendente"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criterio"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Inserir"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "E"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Eliminar"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "ou"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modificar"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Engadir/Eliminar filas de criterios"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Engadir/Eliminar columnas de campo"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Actualizar a procura"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Usar as táboas"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Procura tipo SQL na base de datos %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Enviar esta procura"
@@ -556,7 +550,7 @@ msgstr[1] "%s ocorrencias(s) dentro da táboa %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visualizar"
@@ -566,14 +560,15 @@ msgstr "Visualizar"
msgid "Delete the matches for the %s table?"
msgstr "A extraer datos da táboa"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Eliminar"
@@ -617,17 +612,17 @@ msgstr "No campo:"
msgid "No tables found in database"
msgstr "Non se achou ningunha táboa na base de datos"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Vaciouse a táboa %s"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Deixouse a vista %s"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Eliminouse a táboa %s"
@@ -640,14 +635,14 @@ msgstr "O seguemento está activado."
msgid "Tracking is not active."
msgstr "O seguemento non está activado."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
-"%s."
+"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
+"s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -670,22 +665,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Todos os marcados"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Marcalos todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Quitarlles as marcas a todos"
@@ -694,16 +689,16 @@ msgid "Check tables having overhead"
msgstr "Exceso na comprobación"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Visualización previa da impresión"
@@ -715,28 +710,46 @@ msgstr "Borrar"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Eliminar"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Verificar a táboa"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizar a táboa"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparar a táboa"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizar a táboa"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Ir á táboa"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Substituír os datos da táboa polos do ficheiro"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Substituír os datos da táboa polos do ficheiro"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicionario de datos"
@@ -750,10 +763,10 @@ msgstr "Táboas seguidas"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Base de datos"
@@ -761,36 +774,36 @@ msgstr "Base de datos"
msgid "Last version"
msgstr "Última versión"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Creada"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Actualizada"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Estado"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Acción"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "activado"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "desactivado"
@@ -798,11 +811,11 @@ msgstr "desactivado"
msgid "Versions"
msgstr "Versións"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Informe de seguemento"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Instantánea da estrutura"
@@ -810,8 +823,8 @@ msgstr "Instantánea da estrutura"
msgid "Untracked tables"
msgstr "Táboas non seguidas"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Seguir a táboa"
@@ -870,11 +883,11 @@ msgstr "Gardouse o volcado no ficheiro %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -941,6 +954,13 @@ msgstr ""
"normalmente significa que o phpMyAdmin non poderá rematar esta importación a "
"non ser que lle incrementen os limites de tempo de php."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "A seu orde de SQL executouse sen problemas"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -965,273 +985,291 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Non se permiten as ordes \"Eliminar a base de datos\"."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Seguro? "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Está a piques de DESTRUÍR unha base de datos enteira!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Está a piques de DESTRUÍR unha base de datos enteira!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Está a piques de DESTRUÍR unha base de datos enteira!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Procedementos"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Permite inserir e substituír datos."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Esta operación pode que leve moito tempo. Procésase igual?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Está a piques de DESACTIVAR un repositorio de BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Ten a certeza de querer desactivar todas as referencias a BLOB da base de "
"datos %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Falta un valor no formulario!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Non é un número!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "O nome do servidor está vacío!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "O nome do usuario está vacío!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "O contrasinal está vacío!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Os contrasinais non son os mesmos."
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Engadir un usuario novo"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create version"
msgid "Create User"
msgstr "Crear unha versión"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "A recargar os privilexios"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Eliminar os usuarios seleccionados"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "Cargar"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesos"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Conforme"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Mudar o nome da base de datos para"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Mudar o nome da base de datos para"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copiar a base de datos para"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Conxunto de caracteres"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "A táboa ha de ter, polo menos, un campo."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Crear táboas"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Procurar"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Motores"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Gardar"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Agochar"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "Caixa de Procuras SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Seleccionar a chave referida"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Escoller unha chave externa"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Escolla a chave primaria ou unha chave única"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Escolla o campo que quere que se mostre"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Xerar un contrasinal"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Xerar"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Trocar o contrasinal"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Lu"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1241,125 +1279,131 @@ msgstr ""
"actualizala. A versión máis recente é %s, publicada o %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Comprobar cal é a última versión"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Go to database"
+msgid "up to date"
+msgstr "Ir á base de datos"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Doar"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Seguinte"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binario "
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Maio"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Xuño"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Xullo"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1367,178 +1411,178 @@ msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Do"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lu"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ma"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ve"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sá"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mé"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Xo"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sá"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "en uso"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1593,33 +1637,33 @@ msgid "No index defined!"
msgstr "Non se definiu ningún índice"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Índices"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Único"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Empaquetado"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinalidade"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Comentario"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modificar"
@@ -1643,18 +1687,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Houbo un erro"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1662,7 +1706,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d fileira(s) afectada(s)."
msgstr[1] "%1$d fileira(s) afectada(s)."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1670,7 +1714,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d fileira(s) eliminada(s)."
msgstr[1] "%1$d fileira(s) eliminada(s)."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1765,8 +1809,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
@@ -1921,19 +1965,19 @@ msgstr "Táboas"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Datos"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "De máis (Overhead)"
@@ -2035,16 +2079,16 @@ msgstr ""
"O nome de servidor non é válido para o servidor %1$s. Revise a configuración."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Servidor"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Na configuración indicouse un método de autenticación que non válido::"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Debería actualizar a %s %s ou posterior."
@@ -2079,7 +2123,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentación"
@@ -2231,7 +2275,7 @@ msgstr "A función %s vese afectada por un erro descoñecido; consulte %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Estrutura"
@@ -2266,7 +2310,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "directorio de recepción do servidor web"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Non se pode acceder ao directorio que designou para os envíos"
@@ -2437,7 +2481,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Reiniciar"
@@ -2573,7 +2617,7 @@ msgid "Compress on the fly"
msgstr "Comprimir ao voo"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Ficheiro de configuración"
@@ -2716,7 +2760,7 @@ msgid "Character set of the file"
msgstr "Conxunto de caracteres do ficheiro"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formato"
@@ -3047,7 +3091,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Personalizar a aparencia da moldura de navegación"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servidores"
@@ -3872,7 +3916,7 @@ msgstr "Ficheiro de configuración SweKey"
msgid "Authentication method to use"
msgstr "Método de autenticación que se quere empregar"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Tipo de autenticación"
@@ -4416,9 +4460,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Contrasinal"
@@ -4438,8 +4482,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Nome de usuario"
@@ -4566,7 +4610,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Afirmacións múltiplas estensas"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Comprobar cal é a última versión"
@@ -4732,7 +4776,7 @@ msgstr "Acontecementos"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nome"
@@ -4755,8 +4799,8 @@ msgid "Designer"
msgstr "Deseñador"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilexios"
@@ -4768,7 +4812,7 @@ msgstr "Rutinas"
msgid "Return type"
msgstr "Tipo de retorno"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4789,23 +4833,23 @@ msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(ou o socket local do servidor de MySQL non se configurou correctamente)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detalles..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Trocar o contrasinal"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Sen contrasinal"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Reescribir"
@@ -4829,7 +4873,7 @@ msgid "Create"
msgstr "Crear"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Sen privilexios"
@@ -4963,8 +5007,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"utilizar cadeas de formato de hora. Produciranse transformacións en "
@@ -4987,7 +5031,7 @@ msgstr "Compresión"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Ningunha"
@@ -5191,7 +5235,7 @@ msgstr "Ordenar pola chave"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opcións"
@@ -5230,66 +5274,66 @@ msgstr "Mostrar os contidos BLOB"
msgid "Browser transformation"
msgstr "Transformación do navegador"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Eliminouse o rexistro"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Matar (kill)"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "a procurar"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "A mostrar rexistros "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "a pesquisa levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Mudar"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operacións de resultados da procura"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Vista previa da impresión (con textos completos)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Mostrar o esquema PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Crear unha versión"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Non se atopou o vínculo"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Información sobre a versión"
@@ -5733,8 +5777,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5857,9 +5901,9 @@ msgstr "Tipos MIME dispoñíbeis"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Servidor"
@@ -5870,7 +5914,7 @@ msgid "Generation Time"
msgstr "Xerado en"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versión do servidor"
@@ -6219,7 +6263,32 @@ msgstr "Ningunha"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Ve"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Enviar"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Apply index(s)"
+msgid "Add prefix"
+msgstr "Aplicar índice(s)"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Sen cambios"
@@ -6528,8 +6597,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nome do usuario"
@@ -6550,7 +6619,7 @@ msgstr "Variábel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valor"
@@ -6570,34 +6639,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Engadir un usuario de replicación de escravos"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Calquera usuario"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Use campo de texto"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Calquera servidor"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Este servidor"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Usar a táboa de Host"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6665,7 +6734,7 @@ msgstr "Atributos"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6768,12 +6837,12 @@ msgid "Toggle scratchboard"
msgstr "conmutar o borrador"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguaxe descoñecida: %1$s."
@@ -6850,7 +6919,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Efectuar unha procura SQL na base de datos %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Limpar"
@@ -6884,10 +6953,6 @@ msgstr "Delimitador"
msgid " Show this query here again "
msgstr " Mostrar esta procura aquí outra vez "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Enviar"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Só visualizar"
@@ -6896,7 +6961,7 @@ msgstr "Só visualizar"
msgid "Location of the text file"
msgstr "Localización do arquivo de texto"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "directorio de recepción do servidor web"
@@ -6948,19 +7013,19 @@ msgstr "COMEZA O TEXTO SIMPLE (\"RAW\")"
msgid "END RAW"
msgstr "FIN DO TEXTO SIMPLE (\"RAW\")"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Falta pór a aspa final"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "O identificador non é válido"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Hai unha secuencia de puntuación que resulta descoñecida"
@@ -7014,7 +7079,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Índice"
@@ -7063,12 +7128,12 @@ msgid "As defined:"
msgstr "Como se define:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primaria"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Texto completo"
@@ -7082,7 +7147,7 @@ msgstr ""
"o que fai %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Motor de almacenamento"
@@ -7090,13 +7155,13 @@ msgstr "Motor de almacenamento"
msgid "PARTITION definition"
msgstr "Definición da PARTICIÓN"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Engadir columna(s)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7322,84 +7387,84 @@ msgstr "Non se atoparon ficheiros dentro do arquivo ZIP!"
msgid "Error in ZIP archive:"
msgstr "Houbo un erro no ficheiro ZIP:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Características xerais das relacións"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Codificación de caracteres (Collation) da conexión de MySQL"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Outras opcións principais"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "settings"
msgid "More settings"
msgstr "opcións"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Versión do protocolo"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Usuario"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Código de caracteres (Charset) MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Servidor web"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Versión do cliente de MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Engadido de PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Mostrar información sobre o PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Páxina Oficial do phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributos"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Exportar"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Sen cambios"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7412,7 +7477,7 @@ msgstr ""
"configuración, está aberto a intrusións e habería que mirar de solucionar "
"este problema de seguranza."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7421,7 +7486,7 @@ msgstr ""
"Ten activada mbstring.func_overload na configuración do PHP. Esta opción é "
"incompatíbel co phpMyAdmin e podería ocasionar danos nos datos"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7431,7 +7496,7 @@ msgstr ""
"de caracteres multibyte. Sen o engadido mbstring, o phpMyAdmin é incapaz de "
"partir cadeas correctamente e pode provocar resultados inesperados."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7443,7 +7508,7 @@ msgstr ""
"das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro "
"caducará antes do que está configurado en phpMyAdmin."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7459,13 +7524,13 @@ msgstr ""
"das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro "
"caducará antes do que está configurado en phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"O ficheiro de configuración agora necesita un contrasinal secreto "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7475,7 +7540,7 @@ msgstr ""
"existe aínda no directorio de phpMyAdmin. Deberíao eliminar unha vez "
"finalice a configuración do phpMyAdmin."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7487,14 +7552,14 @@ msgstr ""
"Desactivouse a funcionalidade adicional para o traballo con táboas "
"vinculadas. Para saber o por que, prema %saquí%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7503,14 +7568,14 @@ msgstr ""
"A versión %s da súa libraría de PHP MySQL difire da versión %s do seu "
"servidor de MySQL. Isto pode ocasionar un comportamento impredicíbel."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
-"%sdocumentation%s."
+"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
+"sdocumentation%s."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
msgid "No databases"
@@ -7526,14 +7591,14 @@ msgstr "Filtro"
msgid "filter tables by name"
msgstr "nome da táboa"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Crear táboas"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Seleccione unha base de dados"
@@ -7939,107 +8004,107 @@ msgid "Includes all privileges except GRANT."
msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permite alterar a estrutura das táboas xa existentes."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Permite alterar e eliminar rutinas armacenadas."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permite crear bases de datos e táboas novas."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Permite crear rutinas almacenadas."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permite crear táboas novas."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permite crear táboas temporais."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Permite crear, eliminar e mudar o nome das contas de usuario."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Permite crear vistas novas."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permite eliminar datos."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permite eliminar bases de datos e táboas."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permite eliminar táboas."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Permite configurar acontecementos para o programador de acontecementos"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Permite executar rutinas almacenadas."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Permite importar e exportar datos desde e para ficheiros."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permite crear e eliminar índices."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permite inserir e substituír datos."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Permite bloquear táboas do fío en uso"
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "Limita o número de procuras por hora que pode enviar un usuario."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -8047,58 +8112,58 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Permite ver procesos de todos os usuarios"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Non funciona nesta versión do MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Permite que o usuario pregunte onde están os escravos e os masters."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Necesario para os escravos de replicación."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permite gravar datos."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Permite acceder á listaxe completa de bases de datos"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Permite realizar consultas SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permite apagar o servidor."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -8109,12 +8174,12 @@ msgstr ""
"ou matar os fíos doutros usuarios."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Permite crear e eliminar os disparadores"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permite modificar datos."
@@ -8129,195 +8194,195 @@ msgctxt "None privileges"
msgid "None"
msgstr "Ningunha"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilexios propios de táboa"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: os nomes de privilexios do MySQL están en inglés"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Privilexios globais"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilexios propios de base de datos"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administración"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Privilexios globais"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilexios propios de base de datos"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limites de recursos"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Información sobre o acceso (login)"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Non mude o contrasinal"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Non se achou ningún usuario."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Xa existe o usuario %s"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Engadiuse o usuario."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Acaba de actualizar os privilexios de %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Retiroulle os privilexios a %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Modificouse sen problemas o contrasinal de %s."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "A eliminar %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Non se seleccionaron utilizadores para eliminar!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "A recargar os privilexios"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Elimináronse sen problemas os usuarios seleccionados."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Non houbo problemas ao recargar os privilexios."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Modificar privilexios"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revogar"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Calquera"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Vista xeral dos usuarios"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Conceder"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Engadir un usuario novo"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Eliminar os usuarios seleccionados"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Non se atopou o usuario seleccionado na táboa de privilexios."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilexios propios de columna"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Engadir privilexios para esta base de datos"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Engadir privilexios para a esta táboa"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Modificar a información de acceso (login) / Copiar o utilizador"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Crear un utilizador novo cos mesmos privilexios e..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... manter o anterior."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... eliminar o anterior das táboas de utilizadores."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -8325,44 +8390,44 @@ msgstr ""
" ... eliminar o anterior das táboas de utilizadores e recargar os "
"privilexios despois."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Base de datos para o usuario"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ningunha"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Conceder todos os privilexios sobre a base de datos "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Usuarios que teñen acceso a "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "específico da base de datos"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "comodín"
@@ -9550,7 +9615,7 @@ msgstr "Valor da sesión"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Descargar"
@@ -9597,55 +9662,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "A conexión non é segura"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration file"
+msgid "Configuration saved."
+msgstr "Ficheiro de configuración"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Vista xeral"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Mostrar as mensaxes acochadas (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Non hai ningún servidor configurado"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Novo servidor"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Lingua por omisión"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "que o escolla o usuario"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- ningún -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Servidor por omisión"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Fin da liña"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Mostrar"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Cargar"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Páxina web do phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Doar"
@@ -9849,9 +9926,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9965,65 +10042,65 @@ msgstr "Alterouse a táboa %1$s sen problemas"
msgid "Function"
msgstr "Función"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Por causa da sua lonxitude,
este campo pode non ser editábel "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Eliminar a referencia ao repositorio BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binario - non editar "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Enviar ao repositorio de BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Inserir unha columna nova"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Mostrar procura SQL"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "e despois"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Voltar"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Inserir un rexistro novo"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Voltar para esta páxina"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Modificar a fileira seguinte"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL "
"combinada cunha flecha para moverse a calquera sitio"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -10187,7 +10264,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Engadir ao índice %s coluna(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "O número de columnas ten que ser maior de cero"
@@ -10213,103 +10290,103 @@ msgstr "A táboa %s copiouse para %s."
msgid "The table name is empty!"
msgstr "O nome da táboa está vacío!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Ordenar a táboa por"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "a refacer logo de insercións e destrucións (shingly)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Mover a táboa a (base_de_datos.táboa):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcións da táboa"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Mudar o nome da táboa para"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copiar a táboa a (base_de_datos.táboa):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Ir à táboa copiada"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Táboa de mantemento"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Táboa de desfragmentación"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Fechouse a táboa %s"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Fechar a táboa (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "A extraer datos da táboa"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Ir á base de datos"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Mantemento da partición"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partición %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analizar"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Comprobar"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimizar"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Reconstruír"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Arranxar"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Eliminar particións"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Comprobar a integridade das referencias:"
@@ -10317,39 +10394,39 @@ msgstr "Comprobar a integridade das referencias:"
msgid "Show tables"
msgstr "Mostrar as táboas"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Uso do espazo"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Uso"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efectivo"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Estatísticas da fileira"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Informacións"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "estático"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinámico"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Lonxitude da fileira"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Tamaño da fileira "
@@ -10440,57 +10517,57 @@ msgstr "Ningunha"
msgid "Column %s has been dropped"
msgstr "Eliminouse a táboa %s"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Engadiuse unha chave primaria a %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Engadiusese un índice a %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Mostrar as versións"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Vista das relacións"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Propor unha estrutura para a táboa"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add column(s)"
msgid "Add column"
msgstr "Engadir columna(s)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Ao final da táboa"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "No comezo da táboa"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Despois de %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Crear un índice en %s colunas"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "particionado"
@@ -10518,107 +10595,137 @@ msgstr "Activouse o seguemento de %s.%s , versión %s."
msgid "SQL statements executed."
msgstr "Declaracións SQL executadas."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "Declaracións SQL exportadas. Copie o volcado ou execúteo."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Instantánea da versión %s (código SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Seguir estas declaracións de definición de datos:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Ignore errors"
+msgid "Query error"
+msgstr "Ignorar os erros"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Seguir estas declaracións de manipulación de datos:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Declaracións de seguemento"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Mostrar %s con datas de %s a %s polo usuario %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Permite inserir e substituír datos."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Non hai ningunha base de datos"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Declaración de definición de datos"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Declaración de manipulación de datos"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Volcado de SQL (descarga do ficheiro)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Volcado de SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Esta opción substitúe a táboa e os datos que contén."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Execución de SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exportar como %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Mostrar as versións"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versión"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Desactivar o seguemento de %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Desactivar agora"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Activar o seguemento de %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Activar agora"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Crear a versión %s de %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Seguir estas declaracións de definición de datos:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Seguir estas declaracións de manipulación de datos:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Crear unha versión"
diff --git a/po/he.po b/po/he.po
index 8974112d5a..a648c032d2 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: \n"
"Language-Team: hebrew \n"
-"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "הצג הכל"
@@ -42,9 +42,9 @@ msgstr "עדכון חלון הדפדפן הנבחר נכשל."
msgid "Search"
msgstr "חיפוש"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -60,22 +60,22 @@ msgstr "חיפוש"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "סע"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "שמות מפתח"
@@ -115,17 +115,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "מסד הנתונים %s נמחק."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "הערה על מאגר הנתונים: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "הערות טבלה"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -133,7 +133,7 @@ msgstr "הערות טבלה"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -146,11 +146,11 @@ msgstr "שמות עמודה"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "סוג"
@@ -160,8 +160,8 @@ msgstr "סוג"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -171,7 +171,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "ברירת מחדל"
@@ -194,39 +194,40 @@ msgstr "קישורים אל"
msgid "Comments"
msgstr "הערות"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "לא"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "כן"
@@ -238,8 +239,8 @@ msgstr "הדפסה"
msgid "View dump (schema) of database"
msgstr "ראיית הוצאה (תבנית) של מאגר נתונים"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "לא נמצאו טבלאות במאגר נתונים."
@@ -265,81 +266,81 @@ msgstr "מאגר נתונים %s שונה אל %s"
msgid "Database %s has been copied to %s"
msgstr "מאגר נתונים %s הועתק אל %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "שינוי שם מאגר נתונים אל"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "פקודה"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "שינוי שם מאגר נתונים אל"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "מסד הנתונים %s נמחק."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "אין מאגרי נתונים"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "העתקת מאגר נתונים אל"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "מבנה בלבד"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "מבנה ומידע"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "מידע בלבד"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE לפני העתקה"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "הוספת הגבלות"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "מעבר למאגר נתונים שהועתק"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "קידוד"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -350,7 +351,7 @@ msgid ""
msgstr ""
"תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Display PDF schema"
msgid "Edit or export relational schema"
@@ -360,17 +361,17 @@ msgstr "הצגת תרשים PDF"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "טבלה"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "שורות"
@@ -386,21 +387,21 @@ msgstr "בשימוש"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "יצירה"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "עדכון אחרון"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "נבדק לאחרונה"
@@ -412,101 +413,94 @@ msgid_plural "%s tables"
msgstr[0] "%s טבלאות"
msgstr[1] "%s טבלאות"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "שאילתת SQL שלך בוצעה בהצלחה"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "עליך לבחור לפחות עמודה אחת לתצוגה"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "החלף ל"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "סידור"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "עולה"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "יורד"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "ראייה"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "קריטריון"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "הכנסה"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "וגם"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "מחיקה"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "או"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "עריכה"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Add/Delete Criteria Row"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "עדכון שאילתה"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "השתמש בטבלאות"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "שליחת שאילתה"
@@ -547,7 +541,7 @@ msgstr[1] ""
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "עיון"
@@ -557,14 +551,15 @@ msgstr "עיון"
msgid "Delete the matches for the %s table?"
msgstr "הוצאת מידע עבור טבלה"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "מחיקה"
@@ -608,17 +603,17 @@ msgstr "בתוך הטבלה/הטבלאות:"
msgid "No tables found in database"
msgstr "לא נמצאו טבלאות במאגר נתונים."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "טבלה %s רוקנה"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "שדה %s נמחק"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "טבלה %s נמחקה"
@@ -631,11 +626,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -660,22 +655,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "עם הנבחרים:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "בחירת הכל"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "בטל סימון הכל"
@@ -684,16 +679,16 @@ msgid "Check tables having overhead"
msgstr "בדיקת טבלאות עבור תקורה"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ייצוא"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "תצוגת הדפסה"
@@ -705,28 +700,44 @@ msgstr "ריקון"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "הסרה"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "בדיקת טבלה"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "ייעול טבלה"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "תיקון טבלה"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "ניתוח טבלה"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "החלפת נתוני הטבלה עם הקובץ"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "החלפת נתוני הטבלה עם הקובץ"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "מילון מידע"
@@ -740,10 +751,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "מאגר נתונים"
@@ -751,37 +762,37 @@ msgstr "מאגר נתונים"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "יצירה"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "מצב"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "פעולה"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -790,11 +801,11 @@ msgstr ""
msgid "Versions"
msgstr "Persian"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "מבנה בלבד"
@@ -803,8 +814,8 @@ msgstr "מבנה בלבד"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "בדיקת טבלה"
@@ -863,8 +874,8 @@ msgstr "הוצאה נשמרה אל קובץ %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -922,6 +933,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "שאילתת SQL שלך בוצעה בהצלחה"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -946,260 +964,278 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "הוראות \"DROP DATABASE\" מבוטלות."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "האם אתה באמת רוצה "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "אתה עומד להרוס מאגר נתונים שלם!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "אתה עומד להרוס מאגר נתונים שלם!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "אתה עומד להרוס מאגר נתונים שלם!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "תהליכים"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr ""
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "תהליך זה יכול לקחת זמן רב. להמשיך בכל מקרה?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "ערך ריק בטופס!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "זה אינו מספר!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "שם המארח ריק!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "שם המשתמש ריק !"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "הסיסמא ריקה!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "הסיסמאות אינן זהות!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "הוספת משתמש חדש"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "גרסת שרת"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "הרשאות גלובליות"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "הסרת משתמשים שנבחרו"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "מקומי"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "תהליכים"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "אישור"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "שינוי שם מאגר נתונים אל"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "שינוי שם מאגר נתונים אל"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "העתקת מאגר נתונים אל"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "קידוד"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "טבלה חייבית להכיל לפחות שדה אחד."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "יצירת עמוד חדש"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "חיפוש"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "שאילתת SQL"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "שאילתת SQL"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "מנועים"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "שמירה"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "שאילתת SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "שאילתת SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "התעלמות"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "בחירת שדה להצגה"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "ייצור סיסמא"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "ייצור"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "שינוי סיסמא"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "יום שני"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1207,123 +1243,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "אין מאגרי נתונים"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ללא"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "הקודם"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "הבא"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "סה\"כ"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "בינארי"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "מרץ"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "אפריל"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "מאי"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "יוני"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "יולי"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "אוגוסט"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "אוקטובר"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1331,176 +1372,176 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "דצמבר"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "יום ראשון"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "יום שני"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "יום שלישי"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "יום שישי"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "שבת"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "יום ראשון"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "יום שני"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "יום שלישי"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "יום רביעי"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "יום חמישי"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "יום שישי"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "שבת"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "בשימוש"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1552,34 +1593,34 @@ msgid "No index defined!"
msgstr "אין אינדקסים מוגדרים!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "אינדקסים"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "ייחודי"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "מספור"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "הערות"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "עריכה"
@@ -1601,25 +1642,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "מאגרי נתונים"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "שגיאה"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1627,7 +1668,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "לא נבחרו שורות"
msgstr[1] "לא נבחרו שורות"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1720,8 +1761,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1868,19 +1909,19 @@ msgstr "טבלאות"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "נתונים"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "סה\"כ"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "תקורה"
@@ -1970,16 +2011,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "שרת"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "אתה צריך לשדרג אל %s %s לפחות."
@@ -2014,7 +2055,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "תיעוד"
@@ -2165,7 +2206,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "מבנה"
@@ -2199,7 +2240,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "שמירת שרת בתוך תיקיית %s"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
@@ -2368,7 +2409,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "איפוס"
@@ -2484,7 +2525,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2614,7 +2655,7 @@ msgid "Character set of the file"
msgstr "חבילת הקידוד של הקובץ:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "תבנית"
@@ -2939,7 +2980,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "שרת"
@@ -3682,7 +3723,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4150,9 +4191,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "סיסמא"
@@ -4172,8 +4213,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "שם משתמש:"
@@ -4289,7 +4330,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4436,7 +4477,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "שם"
@@ -4459,8 +4500,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "הרשאות"
@@ -4472,7 +4513,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4491,23 +4532,23 @@ msgstr "השרת אינו מגיב"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "שינוי סיסמא"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "ללא סיסמא"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "הקלדה נוספת"
@@ -4531,7 +4572,7 @@ msgid "Create"
msgstr "יצירה"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "ללא הרשאות"
@@ -4656,8 +4697,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4677,7 +4718,7 @@ msgstr "דחיסה"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "ללא"
@@ -4857,7 +4898,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "פעולות"
@@ -4898,65 +4939,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "שינויי צורה זמינים"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "העתקה"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "השורה נמחקה"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "בשאילתה"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "מראה שורות"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "סה\"כ"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "שאילתה לקחה %01.4f שניות"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "שינוי"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "תצוגת הדפסה (עם טקסטים מלאים)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "מציג הערות עמודה"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "גרסת שרת"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "קישור לא נמצא"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "מידע גרסאות"
@@ -5341,8 +5382,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5463,9 +5504,9 @@ msgstr "סוגי MIME זמינים"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "מארח"
@@ -5476,7 +5517,7 @@ msgid "Generation Time"
msgstr "זמן ייצור"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "גרסת שרת"
@@ -5817,7 +5858,32 @@ msgstr "ללא"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "יום שישי"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "שליחה"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "הוספת שדה חדש"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "ללא שינוי"
@@ -6121,8 +6187,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "שם משתמש"
@@ -6143,7 +6209,7 @@ msgstr "משתנה"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "ערך"
@@ -6161,34 +6227,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "כל משתמש"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "השתמש בשדה טקסט"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "כל שרת מארח"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "מקומי"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "מארח זה"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6251,7 +6317,7 @@ msgstr "תכונות"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "תוספת"
@@ -6354,12 +6420,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6438,7 +6504,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "לוח שנה"
@@ -6473,10 +6539,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " הראה את שאילתה כאן שוב "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "שליחה"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "ראה רק"
@@ -6485,7 +6547,7 @@ msgstr "ראה רק"
msgid "Location of the text file"
msgstr "מיקום של קובץ טקסט"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
#, fuzzy
msgid "web server upload directory"
msgstr "שמירת שרת בתוך תיקיית %s"
@@ -6525,19 +6587,19 @@ msgstr "התחלת RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6589,7 +6651,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "אינדקס"
@@ -6638,12 +6700,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "ראשי"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -6655,7 +6717,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "מנוע אחסון"
@@ -6663,13 +6725,13 @@ msgstr "מנוע אחסון"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "הוספת %s תאים"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6813,82 +6875,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "תכונות קשר כלליות"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "קידוד חיבור MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "תכונות קשר כלליות"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "משתמש"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "קידוד MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "גרסת PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "ראיית מידע PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "דף הבית phpMyAdmin הרשמי"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "תכונות"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "ללא שינוי"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6899,14 +6961,14 @@ msgstr ""
"ברירת מחדל של MySQL. שרת MySQL שלך פועל עם ברירת מחדל זאת, והוא פתוח לחדירות,"
"ואתה ממש צריך לתקן את חור אבטחה זה."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6916,7 +6978,7 @@ msgstr ""
"mbstring מותקנת, phpMyAdmin אינו יכול לחלק מחרוזות באופן תקין וזה יכול לגרום "
"לתוצאות לא רצויות."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6924,24 +6986,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6952,21 +7014,21 @@ msgid ""
msgstr ""
"תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6987,13 +7049,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "שינוי סדר הטבלה לפי"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "יצירת עמוד חדש"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "אנא בחר מאגר נתונים"
@@ -7389,168 +7451,168 @@ msgid "Includes all privileges except GRANT."
msgstr "כלול כל ההרשאות חוץ מ- GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "מאפשר שינוי של מבני הטבלאות הקיימות."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "מאפשר יצירת שגרות מאוחסנות."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
#, fuzzy
msgid "Allows creating new databases and tables."
msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "מאפשר יצירת שגרות מאוחסנות."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "מאפשר יצירת טבלאות חדשות."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "מאפשר יצירת טבלאות זמניות."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "מאפשר יצירת טבלאות חדשות."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "מאפשר מחיקת מידע."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "מאפשר מחיקת טבלאות."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
#, fuzzy
msgid "Allows executing stored routines."
msgstr "מאפשר יצירת שגרות מאוחסנות."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
#, fuzzy
msgid "Allows reading data."
msgstr "מאפשר מחיקת מידע."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7558,12 +7620,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
#, fuzzy
msgid "Allows changing data."
msgstr "מאפשר מחיקת מידע."
@@ -7579,233 +7641,233 @@ msgctxt "None privileges"
msgid "None"
msgstr "ללא"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "הרשאות ספציפיות-לטבלאות"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " הערה: שמות הרשאות MySQL מובטאות באנגלית "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "הרשאות גלובליות"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "הרשאות ספציפיות למאגר נתונים"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "ניהול"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "הרשאות גלובליות"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "הרשאות ספציפיות למאגר נתונים"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "גבולות משאבים"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "מידע כניסה"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "אל תשנה את הסיסמא"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "לא נמצאו משתמשים."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "שם המשתמש %s כבר קיים!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "משתמש חדש נוסף."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "אתה עדכנת הרשאות עבור %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "אתה שללת הרשאות עבור %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "הסיסמא עבור %s שונתה בהצלחה."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "מוחק %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "טוען מחדש הרשאות"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
#, fuzzy
msgid "The selected users have been deleted successfully."
msgstr "%s מסדי נתונים נמחקו בהצלחה."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "ההרשאות נטענו מחדש בהצלחה."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "עריכת הרשאות"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "שלילה"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "כל דבר"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "סקירת משתמשים"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "הענקה"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "הוספת משתמש חדש"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "הסרת משתמשים שנבחרו"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "הרשאות ספציפיות-לעמודה"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "הוספת הרשאות למאגר הנתונים הבא"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "הוספת הראשאות לטבלה הבאה"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "שינוי מידע כניסה / העתקת משתמש"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... שמירת הישן."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... מחיקת הישן מטבלאות המשתמשים."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "ללא"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "בדיקת הראשות עבור מאגר נתונים "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "עולמי"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "ספציפי למאגר הנתונים"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "תו כללי"
@@ -8821,7 +8883,7 @@ msgstr "ערך זמן חיבור (Session)"
msgid "Global value"
msgstr "ערך גלובלי"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8853,57 +8915,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "שינויים נשמרו"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "מקומי"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "תיעוד phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9130,62 +9204,62 @@ msgstr ""
msgid "Function"
msgstr "פונקציה"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " משום אורכם,
השדה הזה יכול להיות בלתי עריך "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "בינארי - אין לערוך"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "הכנסה כשורה חדשה"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ואז"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "חזרה לעמוד הקודם"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "הוספה נוספת של שורה חדשה"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "חזרה אחורה לעמוד זה"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "עריכת השורה הבאה"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9345,7 +9419,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "הוספה לאינדקס %s שורה/שורות"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "מספר העמודות צריך להיות גדול מאפס."
@@ -9372,105 +9446,105 @@ msgstr "טבלה %s הועתקה אל %s."
msgid "The table name is empty!"
msgstr "שם הטבלה ריק!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "שינוי סדר הטבלה לפי"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singly)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "העברת טבלה אל (מסד נתונים.טבלה):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "אפשרויות טבלה"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "שינוי שם טבלה אל"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "העתקת טבלה אל (מסד נתונים.טבלה):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "מעבר לטבלה שהועתקה"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "אחזקת טבלה"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "איחוי טבלה"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "טבלה %s אופסה"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "ריקון טבלה (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "הוצאת מידע עבור טבלה"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "אין מאגרי נתונים"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "אחזקת טבלה"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "צ'יכית"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "תיקון טבלה"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -9478,39 +9552,39 @@ msgstr ""
msgid "Show tables"
msgstr "ראיית טבלאות"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "שימוש מקום"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "שימוש"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "יעיל"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "סטטיסטיקת שורה"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "משפטים"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "דינאמי"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "אורך שורה"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " גודל שורה "
@@ -9596,57 +9670,57 @@ msgstr "ללא"
msgid "Column %s has been dropped"
msgstr "טבלה %s נמחקה"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "מפתח ראשי נוסף אל %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "אינדקס נוסף אל %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "ראיית מידע PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "תצוגת יחסים"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "הצעת מבנה טבלה"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "הוספת %s תאים"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "בסוף טבלה"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "בתחילת טבלה"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "לאחר %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "יצירת אינדקס על %s עמודות"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9674,109 +9748,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "סוג שאילתה"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "אין מאגרי נתונים"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "נתונים"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Persian"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "גרסת שרת"
diff --git a/po/hi.po b/po/hi.po
index 479b311fa1..622b89f727 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2011-04-24 00:23+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
+"PO-Revision-Date: 2011-05-06 09:13+0200\n"
+"Last-Translator: \n"
"Language-Team: hindi \n"
-"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "सभी दिखाओ"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "खोजें"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "खोजें"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "आगे"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "मुख्यनाम"
@@ -95,7 +95,7 @@ msgstr "इस मूल्य का उपयोग करें"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "ब्लोब स्ट्रीमिंग सर्वर संरचना उपस्थित नहीं है !"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%1$s डेटाबेस बनाया गया है."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "डाटाबेस टिप्पणि: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr " टेबल टिप्पणि:"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr " टेबल टिप्पणि:"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "कोलम"
@@ -148,11 +148,11 @@ msgstr "कोलम"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "टाइप"
@@ -162,8 +162,8 @@ msgstr "टाइप"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "अशक्त"
@@ -173,7 +173,7 @@ msgstr "अशक्त"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "डिफ़ॉल्ट"
@@ -196,39 +196,40 @@ msgstr "के लिए लिंक"
msgid "Comments"
msgstr "टिप्पणी"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "नहीं"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "हाँ "
@@ -240,8 +241,8 @@ msgstr "छापें"
msgid "View dump (schema) of database"
msgstr "डेटाबेस का डंप (स्कीमा) दिखाएं"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "डाटाबेस में कोई टेबल नहीं।"
@@ -267,87 +268,87 @@ msgstr " डेटाबेस का नाम %s बदल कर %s रखा
msgid "Database %s has been copied to %s"
msgstr " डेटाबेस %s से %s में कॉपी किया गया है"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "डेटाबेस का नाम बदल कर ____ रखें"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "आदेश"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "डेटाबेस को हटा दे"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "डाटाबेस %s को ड्रोप कर दिया ।"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "ड्रॉप डेटाबेस (छोड़ें)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "डेटाबेस को ______ में कॉपी करें"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "केवल संरचना"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "संरचना और डाटा"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "केवल डाटा"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s जोडें"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT मूल्य जोडें"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "शर्तें जोडें"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "नक़ल किये गए डाटाबेस पर जायें"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "क्रम में करें"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए "
-"%shere%s पर क्लिक करें."
+"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %"
+"shere%s पर क्लिक करें."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें "
@@ -355,17 +356,17 @@ msgstr "संबंधपरक स्कीमा को संपादित
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "टेबल "
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "रो"
@@ -381,21 +382,21 @@ msgstr "उपयोग में"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "रचना"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "पिछला नवीनीकरण"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "पिछली जाँच"
@@ -406,97 +407,90 @@ msgid_plural "%s tables"
msgstr[0] " %s टेबल(s)"
msgstr[1] " %s टेबल(s)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है."
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है."
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "के लिए स्विच"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "दृश्य बिल्डर"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "सॉर्ट"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "आरोही"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "अवरोही"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "दिखाओ"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "मापदंड"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "इन्सर्ट"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "और"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "हटाइए"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "अथवा"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "संशोधित"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "मापदंड रो जोडें/हटायें"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "कोलम जोडें/हटायें"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "क्वरी का नवीनीकरण करें"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "टेबल का उपयोग करो"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "डेटाबेस %s पर SQL क्वरी:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "क्वरी प्रस्तुत करें"
@@ -537,7 +531,7 @@ msgstr[1] "%s टेबल के अंदर %s मैच हैं."
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "ब्राउज़"
@@ -546,14 +540,15 @@ msgstr "ब्राउज़"
msgid "Delete the matches for the %s table?"
msgstr "इस %s टेबल से मैच हटाएँ"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "मिटाएँ"
@@ -589,21 +584,20 @@ msgid "Inside column:"
msgstr "काँलम के अंदर:"
#: db_structure.php:59
-#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "डाटाबेस में कोई टेबल नहीं।"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr " टेबल %s को खाली किया गया है."
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "द्रश्य %s रद्द दिया गया है."
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr " टेबल %s को रद्द किया गया है."
@@ -616,11 +610,11 @@ msgstr "ट्रैकिंग सक्रिय है"
msgid "Tracking is not active."
msgstr "ट्रैकिंग सक्रिय नहीं है."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -644,22 +638,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "चुने हुओं को:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "सभी को चेक करें"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr " सभी को अनचेक करें"
@@ -668,16 +662,16 @@ msgid "Check tables having overhead"
msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें."
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "निर्यात"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "छापने वाला द्रश्य."
@@ -689,28 +683,46 @@ msgstr "खाली करें"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "छोड़ें"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr " टेबल को चेक करें"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "टेबल को अनुकूलित करें"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "टेबल को टीक करें"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "टेबल का विश्लेषण करें"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "टेबल पर जायें"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "फाइल, टेबल डेटा की जगह"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "फाइल, टेबल डेटा की जगह"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "डेटा शब्दकोश"
@@ -724,10 +736,10 @@ msgstr "ट्रैक की गयी टेबलएं"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr " डाटाबेस"
@@ -735,36 +747,36 @@ msgstr " डाटाबेस"
msgid "Last version"
msgstr "पिछला संस्करण"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "बनाया"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "अद्यतन"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "स्थिति"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "कार्य"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "सक्रिय"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "निष्क्रिय"
@@ -772,11 +784,11 @@ msgstr "निष्क्रिय"
msgid "Versions"
msgstr "संस्करण"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "ट्रैकिंग रिपोर्ट"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "संरचना स्नैपशॉट"
@@ -784,8 +796,8 @@ msgstr "संरचना स्नैपशॉट"
msgid "Untracked tables"
msgstr "लापता टेबलएं"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "टेबलओं को ट्रैक करें"
@@ -843,8 +855,8 @@ msgstr "डंप को %s फाइल में सेव किया गय
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें."
@@ -912,6 +924,13 @@ msgstr ""
"पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय "
"सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है."
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -936,223 +955,241 @@ msgstr "रद्द करने के लिए क्लिक करें.
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "क्या आप सचमुच चाहते है की"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "घटना छोड़ "
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "प्रोसदुरे छोड़"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "ट्रैकिंग डेटा हटाएँ"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "प्राथमिक-कुंजी/सूची छोड़"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "यह आपरेशन लंबे समय लग सकता है. फिर भी आगे बढ़ें?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "आप एक BLOB भंडार निष्क्रिय करने वाले हैं!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "क्या आप वाकई %s दाताबेस के सारे संदर्भ निष्क्रिय करना चाहते है?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "फॉर्म में मूल्य गूम हैं."
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "यह नंबर नहीं है!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "मेज़बान का नाम (hostname) खाली है!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "यूसर नाम खाली है!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "पासवर्ड खाली है"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "पासवर्ड मिलते झूलते नहीं हैं."
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "नया यूसर जोडें"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "यूसर बनाइये"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "प्रिविलेज पुनः लोड करें"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "चयनित यूसर को हटायें"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "बंद"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "रद्द"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "लोड हो रहा है"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "याचिका प्रसंस्करण"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "याचिका प्रसंस्करणमें त्रुटि"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "काँलम गिराना"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "प्राथमिक कुंजी जोड़"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ठीक है"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "डेटाबेस का नाम बदल कर ____ रखें"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "डेटाबेस पुनः लोड"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "डेटाबेस को ______ में कॉपी करें"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "वर्ण सेट बदलें"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "नया टेबल बनाऐं"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "खोजें"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "क्वरी बॉक्स छुपा"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "क्वेरी बॉक्स दिखाएँ"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "इनलाइन संपादन"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "बचाना"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "छिपाना"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "खोज मापदंड छिपाना"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "खोज मापदंड दिखाना"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "ध्यान न देना"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "संदर्भित कुंजी का चयन करें."
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "विदेश कुंजी का चयन करें."
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "प्रदर्शित करने के लिए काँलम चयन करें."
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "काँलम के लिए एक विकल्प जोड़ें"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "पासव्रड उत्पन्न करें"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "उत्पन्न"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "पासवर्ड बदलिये "
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "अधिक"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1161,254 +1198,260 @@ msgstr ""
"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", नवीनतम स्थिर संस्करण:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "डेटाबेस को कूद"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "किया"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "पिछला"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr " अगला"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "आज"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "जनवरी"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "फरवरी"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "मार्च"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "अप्रैल"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "मई"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "जून"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "जुलाई"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "अगस्त"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "सितम्बर"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "अक्तूबर"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "नवम्बर"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "दिसमबर"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "रविवार"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "सोमवार"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "मन्गलवार"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "बुधवार"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "गुरूवार"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "शुक्रवार"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "शनिवार"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "शनिवार"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "रविवार"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "सोमवार"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "मन्गलवार"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "बुधवार"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "गुरुवार"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "शुक्रवार"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "शनिवार"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "हफ्ता"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "घंटा"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "मिनट"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "सेकंड"
@@ -1459,33 +1502,33 @@ msgid "No index defined!"
msgstr "परिभाषित सूचकांक नहीं पाए गए!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "सूचकांक"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "अद्वितीय"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "जमा"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "प्रमुखता"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "टिप्पणी"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "सम्पादन"
@@ -1507,32 +1550,32 @@ msgstr "सूचकांक %1s और %2s बराबर लगने के
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr " डाटाबेस"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "त्रुटि"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "एकवचन %1$d रोव प्रभावित"
msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "एकवचन%1$d रोव नष्ट"
msgstr[1] "बहुवचन%1$d रोवस नष्ट"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1624,11 +1667,11 @@ msgstr " %s मे स्वागत है"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
-"%2$s का उपयोग करें."
+"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
+"$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1772,19 +1815,19 @@ msgstr "टेबल"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "डाटा"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "कुल"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "जरूरत से ज्यादा"
@@ -1870,16 +1913,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें"
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "सर्वर"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए"
@@ -1914,7 +1957,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "डोक्युमेंटेशन"
@@ -2062,7 +2105,7 @@ msgstr "%s कार्यक्षमताएक एक बग के द्
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "संरचना"
@@ -2096,7 +2139,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; "
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता"
@@ -2254,7 +2297,7 @@ msgstr "कर्ता को इस मूल्य को अनुकूल
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "रीसेट"
@@ -2377,7 +2420,7 @@ msgid "Compress on the fly"
msgstr "जल्दी संक्षिप्त करें"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "विन्यास फाइल"
@@ -2502,7 +2545,7 @@ msgid "Character set of the file"
msgstr "फ़ाइल का चरित्र सेट"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "प्रारूप"
@@ -2803,7 +2846,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "नेविगेशन फ्रेम की दिखावट को अनुकूलित करें"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "सर्वर"
@@ -3542,7 +3585,7 @@ msgstr "SweKey config फाइल"
msgid "Authentication method to use"
msgstr "प्रमाणीकरण विधि उपयोग करने के लिए"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "प्रमाणीकरण पद्धति का उपयोग"
@@ -3714,7 +3757,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:400
-#| msgid "Database"
msgid "Database name"
msgstr "डेटाबेस नाम"
@@ -4001,9 +4043,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "पासवर्ड"
@@ -4024,8 +4066,8 @@ msgid ""
msgstr ""
"अगर आप एक कस्टम यूसर हैं,तो यहाँ निर्दिष्ट करें, (defaults to [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "यूसर नाम"
@@ -4054,7 +4096,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:477
-#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
@@ -4077,7 +4118,6 @@ msgid "Title of browser window when nothing is selected"
msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी डेटाबेस का चयन नहीं किया है"
#: libraries/config/messages.inc.php:483
-#| msgid "Default"
msgid "Default title"
msgstr "डिफ़ॉल्ट शीर्षक"
@@ -4138,7 +4178,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "वाचाल बयान"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "नवीनतम संस्करण के लिए जाँच"
@@ -4165,22 +4205,18 @@ msgid "ZIP"
msgstr "ZIP"
#: libraries/config/setup.forms.php:41
-#| msgid "Authenticating..."
msgid "Config authentication"
msgstr "विन्यास प्रमाणीकरण"
#: libraries/config/setup.forms.php:45
-#| msgid "Authenticating..."
msgid "Cookie authentication"
msgstr "कुकी प्रमाणीकरण"
#: libraries/config/setup.forms.php:48
-#| msgid "Authenticating..."
msgid "HTTP authentication"
msgstr "HTTP प्रमाणीकरण"
#: libraries/config/setup.forms.php:51
-#| msgid "Authenticating..."
msgid "Signon authentication"
msgstr "signon प्रमाणीकरण"
@@ -4222,7 +4258,6 @@ msgstr "कस्टम"
#: libraries/config/setup.forms.php:287
#: libraries/config/user_preferences.forms.php:189
-#| msgid "Databases statistics"
msgid "Database export options"
msgstr "डेटाबेस निर्यात विकल्प"
@@ -4290,7 +4325,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "नाम"
@@ -4313,8 +4348,8 @@ msgid "Designer"
msgstr "डिजाइनर"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr " प्रिविलेज"
@@ -4326,7 +4361,7 @@ msgstr "नियमित कार्य"
msgid "Return type"
msgstr "रिटर्न प्रकार"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4346,23 +4381,23 @@ msgstr "सर्वर जवाब नहीं दे रहा"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "विवरण..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "पासव्रड बदलिये"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "पासवर्ड नहीं है"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "फिर से लिखें"
@@ -4384,7 +4419,7 @@ msgid "Create"
msgstr "बनाइये"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "कोइ प्रिविलेज नहीं"
@@ -4394,7 +4429,6 @@ msgid "Create table on database %s"
msgstr " %s डाटाबेस मे नया टेबल बनाओ"
#: libraries/display_create_table.lib.php:55
-#| msgid "Number of rows per page"
msgid "Number of columns"
msgstr "काँलम की संख्या"
@@ -4403,7 +4437,6 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "निर्यात plugins लोड नहीं कर सका, अपने अधिष्ठापन को जांचें"
#: libraries/display_export.lib.php:87
-#| msgid "Cannot log in to the MySQL server"
msgid "Exporting databases from the current server"
msgstr "वर्तमान सर्वर से डेटाबेस का निर्यात"
@@ -4418,7 +4451,6 @@ msgid "Exporting rows from \"%s\" table"
msgstr "\"%s\" डेटाबेस से रो निर्यात"
#: libraries/display_export.lib.php:97
-#| msgid "Export"
msgid "Export Method:"
msgstr "निर्यात विधि"
@@ -4431,12 +4463,10 @@ msgid "Custom - display all possible options"
msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें"
#: libraries/display_export.lib.php:137
-#| msgid "Databases"
msgid "Database(s):"
msgstr " डाटाबेस(s)"
#: libraries/display_export.lib.php:139
-#| msgid "Table"
msgid "Table(s):"
msgstr " टेबल(s) "
@@ -4449,7 +4479,6 @@ msgid "Dump some row(s)"
msgstr "कुछ रो डंप"
#: libraries/display_export.lib.php:159
-#| msgid "Number of rows per page"
msgid "Number of rows:"
msgstr "रो की संख्या"
@@ -4471,7 +4500,6 @@ msgid "Save on server in the directory %s"
msgstr "सर्वर पर %sनिर्देशिका में सहेजते"
#: libraries/display_export.lib.php:206
-#| msgid "Save as file"
msgid "Save output to a file"
msgstr "उत्पादन को फाईल मे सेव करें"
@@ -4495,8 +4523,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4514,7 +4542,7 @@ msgstr "संपीड़न"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "कोई नहीं"
@@ -4531,7 +4559,6 @@ msgid "bzipped"
msgstr "bzipped"
#: libraries/display_export.lib.php:326
-#| msgid "Save as file"
msgid "View output as text"
msgstr "फ़ाइल के रूप में उत्पादन देख"
@@ -4541,7 +4568,6 @@ msgid "Format:"
msgstr "प्रारूप"
#: libraries/display_export.lib.php:336
-#| msgid "Column-specific privileges"
msgid "Format-specific options:"
msgstr "प्रारूप निर्दिष्ट विकल्प:"
@@ -4573,19 +4599,16 @@ msgid ""
msgstr "फाइल अपलोड की जा रही है, कृपया धीरज रखें"
#: libraries/display_import.lib.php:129
-#| msgid "Cannot log in to the MySQL server"
msgid "Importing into the current server"
msgstr "वर्तमान सर्वर में डेटा आयात"
#: libraries/display_import.lib.php:131
#, php-format
-#| msgid "No databases"
msgid "Importing into the database \"%s\""
msgstr "\"%s\" डेटाबेस में आयात"
#: libraries/display_import.lib.php:133
#, php-format
-#| msgid "No databases"
msgid "Importing into the table \"%s\""
msgstr "\"%s\" टेबल में आयात"
@@ -4619,18 +4642,13 @@ msgid ""
msgstr ""
#: libraries/display_import.lib.php:221
-#| msgid ""
-#| "Allow the interruption of an import in case the script detects it is "
-#| "close to the PHP timeout limit. This might be good way to import large "
-#| "files, however it can break transactions."
msgid ""
"Allow the interruption of an import in case the script detects it is close "
"to the PHP timeout limit. (This might be good way to import large files, "
"however it can break transactions.)"
msgstr ""
-"यदि स्क्रिप्ट पता लगाए की वो PHP मध्यांतर सीमा के करीब है तब एक रुकावट के "
-"आयात की अनुमति दें. यह बड़ी फाइल के आयात के लिए अच्छा है लेकिन, लेकिन यह "
-"लेनदेन तोड़ सकता है. "
+"यदि स्क्रिप्ट पता लगाए की वो PHP मध्यांतर सीमा के करीब है तब एक रुकावट के आयात की "
+"अनुमति दें. यह बड़ी फाइल के आयात के लिए अच्छा है लेकिन, लेकिन यह लेनदेन तोड़ सकता है. "
#: libraries/display_import.lib.php:228
msgid "Number of rows to skip, starting from the first row:"
@@ -4651,7 +4669,6 @@ msgid "%d is not valid row number."
msgstr "%d वैध रो संख्या नहीं है"
#: libraries/display_tbl.lib.php:392
-#| msgid "row(s) starting from record #"
msgid "row(s) starting from row #"
msgstr "रो से शुरू #"
@@ -4690,7 +4707,7 @@ msgstr "कुंजी सॉर्ट"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "विकल्प"
@@ -4723,65 +4740,64 @@ msgstr "BLOB सामग्री दिखाने"
msgid "Browser transformation"
msgstr "सामग्री दिखाने"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "अनुकृति"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "रौ को डिलीट कर दिया"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "रौ देखिये"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr " कुल"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "बदलिये"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display Features"
msgid "Display chart"
msgstr "फीचरस दिखाओ"
-#: libraries/display_tbl.lib.php:2312
-#| msgid "Create"
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "दृश्य बनाइये"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "लिंक नहीं मिला"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "संस्करण जानकारी"
@@ -5164,8 +5180,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5276,9 +5292,9 @@ msgstr "फीचरस दिखाओ"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "होस्ट"
@@ -5289,7 +5305,7 @@ msgid "Generation Time"
msgstr "समय पर बनाया"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr ""
@@ -5625,7 +5641,32 @@ msgstr "कोई एन्कोडिंग नहीं"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "शुक्रवार"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "सबमिट"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "अनुक्रमणिका जोड़"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "कोइ बदलाव नहीं"
@@ -5927,8 +5968,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "यूसर नेम"
@@ -5949,7 +5990,7 @@ msgstr "स्थिति"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "मूल्य"
@@ -5967,34 +6008,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "कोई भी यूसर"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "कोई भी होस्ट"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "इस होस्ट"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "होस्ट टेबल का उपयोग करें"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6059,7 +6100,7 @@ msgstr "विशेषता"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr " अतिरिक्त"
@@ -6160,12 +6201,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "आईटीआर"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "अज्ञात भाषा: %1$s."
@@ -6240,7 +6281,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "डाटाबेस %s में SQL प्रशन चलाइये "
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "स्पष्ट"
@@ -6274,10 +6315,6 @@ msgstr "सीमांकक"
msgid " Show this query here again "
msgstr " यह query वापस यहीं दिखायें "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "सबमिट"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "केवल देखिये"
@@ -6286,7 +6323,7 @@ msgstr "केवल देखिये"
msgid "Location of the text file"
msgstr "पाठ फ़ाइल का स्थान"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "वेब सर्वर अपलोड निर्देशिका"
@@ -6325,19 +6362,19 @@ msgstr "BEGIN रॉ"
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "अवैध पहचानकर्ता"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "अज्ञात विराम स्ट्रिंग"
@@ -6377,7 +6414,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "सूची"
@@ -6420,12 +6457,12 @@ msgid "As defined:"
msgstr "जैसे परिभाषित:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "प्राथमिक"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "प्राथमिक"
@@ -6437,7 +6474,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6445,13 +6482,13 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s क्षेत्र जोडें"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6595,81 +6632,81 @@ msgstr "ज़िप संग्रह के अंदर कोई फाइ
msgid "Error in ZIP archive:"
msgstr "ज़िप संग्रह में त्रुटि"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "सामान्य सेटिंग्स"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL कनेक्शन कलेवा"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "उपस्थिति सेटिंग्स"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "अधिक सेटिंग्स"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "अधिक सेटिंग्स"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "यूसर"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL वर्ण सेट"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "वर्ण सेट"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL ग्राहक संस्करण"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHPविस्तार"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP कि जानकारी दिखाओ"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "विकी"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin का आधिकारिक होमपेज"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "विकी"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "समर्थन पाएं"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "परिवर्तनों की सूची"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6677,21 +6714,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6699,24 +6736,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6728,21 +6765,21 @@ msgstr ""
"लिंक्ड टेबलओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. क्यों ये "
"किया गया है, जानने के लिए %shere%s पर क्लिक करें."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6763,14 +6800,14 @@ msgstr ""
msgid "filter tables by name"
msgstr "टेबल क्रमांक को बदलिये "
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create a page"
msgctxt "short form"
msgid "Create table"
msgstr "नया पेज़ बनाऐं"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "कृपया एक डाटाबेस चुनिये "
@@ -7154,106 +7191,106 @@ msgid "Includes all privileges except GRANT."
msgstr "ेेोीाेेGRANT के अतिरिक्त सभी इंजन शामिल"
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "मौजूदा टेबल की संरचना में फेरबदल की अनुमति देता है"
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है"
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "नया डेटाबेस और टेबल बनाने की अनुमति देता है"
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "नया नियमित कार्यक्रम बनाने की अनुमति देता है"
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "नया टेबल बनाने की अनुमति देता है"
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है"
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "यूसर खातों बनाने, गिराना और नाम बदलने की अनुमति देता है"
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "नए दृश्य बनाने की अनुमति देता है"
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "डेटा को हटाने की अनुमति देता है"
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "डेटाबेस और टेबल को हटाने की अनुमति देता है"
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "टेबल को हटाने की अनुमति देता है"
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "घटना अनुसूचक के लिए घटना को स्थापित करने की अनुमति देता है"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है"
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "डेटा फ़ाइलों में आयात और निर्यात करने की अनुमति देता है"
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "सूचक बनाने और हटाने की अनुमति देता है"
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "डेटा डालने और हटाने की अनुमति देता है"
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7261,58 +7298,58 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है"
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "सभी यूसरओं प्रक्रियाओं को देखने की अनुमति"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "इस MySQL संस्करण में कोई प्रभाव नहीं है"
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "सर्वर सेटिंग्स को पुन: लोड और सर्वर के कैश निस्तब्धता की अनुमति देता है"
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "डाटा पढने की अनुमति देता है"
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "डेटाबेस की पूरी सूची तक पहुंचा देता है"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "सर्वर बन्द करने की अनुमति देता है"
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7320,12 +7357,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "डेटा को बदलने की अनुमति देता है"
@@ -7340,229 +7377,229 @@ msgctxt "None privileges"
msgid "None"
msgstr "नहीं"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "केवल टेबल के प्रिविलेज"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "वैश्विक प्रिविलेज"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr " केवल डाटाबेस के प्रिविलेज"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "एडमिनिस्ट्रेशन"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "वैश्विक प्रिविलेज"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr " केवल डाटाबेस के प्रिविलेज"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "संसाधन सीमा"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "प्रवेश जानकारी"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "पासवर्ड मत बदलिये"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "कोई यूसर नहीं।"
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "%s यूसर पहले से मौजूद है"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "आपने नया यूसर बना लिया"
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।"
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "आपने %s के privileges वापस ले लिया "
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया"
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "विशेषाधिकार पुनः लोड"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है"
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr " प्रिविलेज एडिट करें"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "वापस लो"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "कोई"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "यूसर सिंहावलोकन"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "अनुदान"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "नया यूसर जोडें"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "चयनित यूसर हटायें"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा"
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr " केवल कोलम के प्रिविलेज"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "इन टेबल के लिये विशेषाधिकार जोडें"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... पुराने रखना"
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr "पुराने यूसर को टेबल से हटाना"
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "यूसर के लिए डेटाबेस"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "No"
msgctxt "Create none database for user"
msgid "None"
msgstr "यूसर के लिए डेटाबेस न बनाये"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान "
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "वैश्विक"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "डेटाबेस-विशेष"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "वाइल्डकार्ड"
@@ -8571,7 +8608,7 @@ msgstr "सत्र मूल्य"
msgid "Global value"
msgstr "वैश्विक मूल्य"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "डाउनलोड"
@@ -8603,55 +8640,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "असुरक्षित कनेक्शन"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "विन्यास भंडारण"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "सिंहावलोकन"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "छुपे हुए संदेशों को दिखाना"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "नए सर्वर"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "डिफ़ॉल्ट भाषा"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "यूसर का चयन करने दे"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- कोई नहीं -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "मूलभूत सर्वर"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "लाइन के अंत"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "प्रदर्शन"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "लोड"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin मुखपृष्ठ"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "दान"
@@ -8874,60 +8923,60 @@ msgstr "%1$s टेबल को सफलतापूर्वक बदल द
msgid "Function"
msgstr ""
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "BLOB रिपोजिटरी संदर्भ हटायें"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "बइनरी - एडिट मत करिये"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "BLOB भण्डार में अपलोड करें"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "इसको नया रौ में जोडे "
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "और फिर"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "पिछले पृष्ट पर वापस जाएँ"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "एक और नई रो इनसर्ट करें"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "इस पृष्ठ पर वापस जाएँ"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "अगली रो को संपादित करें"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9079,7 +9128,7 @@ msgstr "\"PRIMARY\" नाम हो सकता है केवल एक
msgid "Add to index %s column(s)"
msgstr "सूचकांक में जोडें %s column(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "काँलम गणना शुन्य से अधिक होनी चाहिए"
@@ -9105,97 +9154,97 @@ msgstr " %s टेबल को %s में कापी कर दिया."
msgid "The table name is empty!"
msgstr " टेबल का नाम खाली है!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "टेबल क्रमांक को बदलिये "
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(अकेले)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr " टेबल को (database.table) में मूव करें:"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "टेबल विकल्प"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "टेबल का नाम बदलें"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr " (database.table) में टेबल को कापी करें:"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "नकल की टेबल पर स्विच करें"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr " टेबल रख-रखाव"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "देफ्रागमेंट टेबल"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr " टेबल %s को flush किया"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr " टेबल को Flush करें (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "टेबल या डेटा हटाएँ"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "टेबल को खाली करें"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "डेटाबेस को ______ छोड़ें "
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "विभाजन रखरखाव"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "विभाजन %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "विश्लेषण"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "चेक"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "सुधारना"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "फिर से बनाना"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "मरम्मत"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "विभाजन हटायें"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Referential अखंडता की जाँच करें"
@@ -9203,39 +9252,39 @@ msgstr "Referential अखंडता की जाँच करें"
msgid "Show tables"
msgstr "टेबल दिखाओ"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "स्थान उपयोग"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "उपयोग"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "वास्तविक"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "पंक्ति आँकड़े"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "रो आँकड़े"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "स्थिर"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "गतिशील"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "रौ की लंबाई"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "रौ का आकार"
@@ -9312,52 +9361,52 @@ msgstr "कोई नहीं"
msgid "Column %s has been dropped"
msgstr " टेबल %s को रद्द किया गया है."
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr " %s पर एक प्राईमरी की जड़ी गयी है"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "%s पर एक सूचकांक जोड़ा गया है"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "अधिक क्रियाएँ दिखाओ"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "संबंध दृश्य"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "टेबल संरचना का प्रस्ताव"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "नया काँलम जोडें"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "टेबल के आखिर में"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "टेबल के शुरू में"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s के बाद"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr " %s कोलम पर इन्डेक्स बनाऐं "
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "विभाजित"
@@ -9385,7 +9434,7 @@ msgstr "ट्रैकिंग %s.%s के लिए, संस्करण %
msgid "SQL statements executed."
msgstr "SQL कथन चलाएँ"
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9393,101 +9442,131 @@ msgstr ""
"आप दुम्प को क्रियान्वित कर सकते हैं एक अस्थायी डेटाबेस का उपयोग करें. सुनिश्चित करें कि आप "
"ऐसा करने के लिए विशेषाधिकार हैं कृपया."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "इन दो लाइन को टिप्पणी बना दें अगर आपको इनकी आवश्यकता नहीं है"
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL कथन निर्यात. कृपया दुम्प को या तो कॉपी करें य फिर क्रियान्वित करें"
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "संस्करण %s क्षणचित्र (SQL कोड)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "डेटा परिभाषा पर नज़र रखना"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "त्रुटियों को इकट्ठा करें"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "डेटा आपरेशन पर नज़र रखना"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "ट्रैकिंग कि स्थिति"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "%s दिखाएँ तारीख %s से %s तक, उपयोक्ता %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "कोइ डाटाबेस नहिं"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "तिथि"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "डेटा परिभाषा कथन"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "डेटा हेरफेर कथन"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL दुम्प ( फाइल डाउनलोड )"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL ढेर लगाना"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "यह विकल्प आपके टेबल और डेटा को बदल देगा."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL अमल"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "%s के रूप में निर्यात"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "संस्करण दिखाएँ"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "संस्करण"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "ट्रैकिंग निष्क्रिय %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "निष्क्रिय करे"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "ट्रैकिंग सक्रिय %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "सक्रिय करे"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "%s संस्करण बनायें %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "डेटा परिभाषा पर नज़र रखना"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "डेटा आपरेशन पर नज़र रखना"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "संस्करण बनाएँ"
diff --git a/po/hr.po b/po/hr.po
index 8626d6f4b7..b1352d7acf 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1,22 +1,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: croatian
\n"
-"Language: hr\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"
+"Language: hr\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: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Prikaži sve"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Traži"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Traži"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Naziv ključa"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza podataka %1$s uspješno je izrađena."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar baze podataka: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentari tablice"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Komentari tablice"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -152,11 +152,11 @@ msgstr "Nazivi stupaca"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Vrsta"
@@ -166,8 +166,8 @@ msgstr "Vrsta"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -177,7 +177,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Zadano"
@@ -200,39 +200,40 @@ msgstr "Povezano s"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Da"
@@ -244,8 +245,8 @@ msgstr "Ispiši"
msgid "View dump (schema) of database"
msgstr "Prikaži ispis (shemu) baze podataka"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "U bazi podataka nisu pronađene tablice."
@@ -271,81 +272,81 @@ msgstr "Baza podataka %s preimenovana je u %s"
msgid "Database %s has been copied to %s"
msgstr "Baza podataka %s kopirana je u %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Preimenuj bazu podataka u"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Preimenuj bazu podataka u"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza podataka %s je odbačena."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Nema baza podataka"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiraj bazu podataka u"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo strukturu"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strukturu i podatke"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podatke"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj vrijednost AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Dodaj prisile"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Prebaci se na kopiranu bazu podataka"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Uspoređivanje"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -357,7 +358,7 @@ msgstr ""
"Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste "
"saznali razloge, pritisnite %sovdje%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -367,17 +368,17 @@ msgstr "Shema relacija"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tablica"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Redaka"
@@ -393,21 +394,21 @@ msgstr "u upotrebi"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Izrada"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Posljednje ažuriranje"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Posljednja provjera"
@@ -419,101 +420,94 @@ msgid_plural "%s tables"
msgstr[0] "%s tablica"
msgstr[1] "%s tablica"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Vaš SQL upit uspješno je izvršen"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Morate odabrati najmanje jedan stupac za prikazivanje"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Presloži"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Uzlazno"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Silazno"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Prikaži"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterij"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "I"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ili"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Uredi"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Dodaj/Izbriši redak kriterija"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Ažuriraj upit"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Upotrijebi tablice"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL upit nad bazom podataka %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Podnesi upit"
@@ -555,7 +549,7 @@ msgstr[1] "%s poklapanja unutar tablice %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Pretraživanje"
@@ -565,14 +559,15 @@ msgstr "Pretraživanje"
msgid "Delete the matches for the %s table?"
msgstr "Izbacivanje podataka za tablicu"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Izbriši"
@@ -616,17 +611,17 @@ msgstr "Unutar polja:"
msgid "No tables found in database"
msgstr "U bazi podataka nisu pronađene tablice."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tablica %s je očišćena"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Index %s je ispušten"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tablica %s je odbačen"
@@ -639,11 +634,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
@@ -668,22 +663,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "S odabirom:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Ukloni sve oznake"
@@ -692,16 +687,16 @@ msgid "Check tables having overhead"
msgstr "Provjeri za prepunjene tablice"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Prikaz ispisa"
@@ -713,28 +708,45 @@ msgstr "Isprazni"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Ispusti"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Provjeri tablicu"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiziraj tablicu"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Popravi tablicu"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analiziraj tablicu"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Nema baza podataka"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Podatke tablice zamijeni datotekom"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Podatke tablice zamijeni datotekom"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Rječnik podataka"
@@ -749,10 +761,10 @@ msgstr "Provjeri tablicu"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Baza podataka"
@@ -761,37 +773,37 @@ msgstr "Baza podataka"
msgid "Last version"
msgstr "Izradi relaciju"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Izradi"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Stanje"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Aktivnost"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -800,11 +812,11 @@ msgstr ""
msgid "Versions"
msgstr "Perzijski"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Samo strukturu"
@@ -814,8 +826,8 @@ msgstr "Samo strukturu"
msgid "Untracked tables"
msgstr "Provjeri tablicu"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Provjeri tablicu"
@@ -876,11 +888,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
-"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
+"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
+"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -948,6 +960,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Vaš SQL upit uspješno je izvršen"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -974,265 +993,283 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" izjave su onemogućene."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Želite li zaista "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Postupci"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Dopušta umetanje i zamjenu podataka."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Ovaj postupak može potrajati dulje vrijeme. Ipak nastaviti?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "U obrascu nedostaje vrijednost!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ovo nije brojka!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Naziv računala je prazan!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Korisničko ime je prazno!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Lozinka je prazna!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Lozinke se ne podudaraju!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Dodaj novog korisnika"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Izradi relaciju"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Ponovno učitavanje privilegija"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Ukloni odabrane korisnike"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Odustani"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Lokalno"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "U redu "
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Preimenuj bazu podataka u"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Preimenuj bazu podataka u"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopiraj bazu podataka u"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Tablica znakova"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tablica mora sadržavati najmanje jedno polje."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Izradi tablicu"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Traži"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL upit"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL upit"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Pogoni"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Spremi"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Sakrij"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoriraj"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Odaberite referentni ključ"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Odaberite strani ključ"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Odaberite primarni ključ ili jedinstveni ključ"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Odaberi polje za prikaz"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generiraj lozinku"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generiraj"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promijeni lozinku"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1240,123 +1277,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Izradi relaciju"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Nema baza podataka"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "Podaci"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodni"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Sljedeće"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarno"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Ožu"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Tra"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Svi"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Lip"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Srp"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Kol"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Lis"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1364,178 +1406,178 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Pro"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "u upotrebi"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1590,33 +1632,33 @@ msgid "No index defined!"
msgstr "Nema definiranog indeksa!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksi"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Jedinstveno"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Pakirano"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Najvažnije"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Komentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uređivanje"
@@ -1639,18 +1681,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Baze podataka"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Pogreška"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1658,7 +1700,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "Zahvaćeno redaka: %1$d."
msgstr[1] "Zahvaćeno redaka: %1$d."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1666,7 +1708,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Izbrisano redaka: %1$d."
msgstr[1] "Izbrisano redaka: %1$d."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1759,8 +1801,8 @@ msgstr "Dobro došli u %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete "
"upotrijebiti naredbu %1$ssetup script%2$s"
@@ -1910,19 +1952,19 @@ msgstr "Tablice"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Podaci"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Ukupno"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Prepunjenje"
@@ -2021,16 +2063,16 @@ msgstr ""
"konfiguraciju."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Poslužitelj"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Trebali biste nadograditi na %s %s ili kasniju."
@@ -2065,7 +2107,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2215,7 +2257,7 @@ msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Strukturu"
@@ -2250,7 +2292,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "mapa učitavanja web poslužitelja"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti"
@@ -2420,7 +2462,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Povrat"
@@ -2536,7 +2578,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2668,7 +2710,7 @@ msgid "Character set of the file"
msgstr "Tablica znakova za datoteku:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Oblikovanje"
@@ -2996,7 +3038,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Poslužitelji"
@@ -3755,7 +3797,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4227,9 +4269,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Lozinka"
@@ -4249,8 +4291,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Korisničko ime:"
@@ -4366,7 +4408,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4515,7 +4557,7 @@ msgstr "Događaji"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Naziv"
@@ -4538,8 +4580,8 @@ msgid "Designer"
msgstr "Kreator"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegije"
@@ -4551,7 +4593,7 @@ msgstr "Rutine"
msgid "Return type"
msgstr "Vrsta povratka"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4573,23 +4615,23 @@ msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detalji..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Promijeni lozinku"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Bez lozinke"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ponovite"
@@ -4613,7 +4655,7 @@ msgid "Create"
msgstr "Izradi"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Bez privilegija"
@@ -4743,8 +4785,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
@@ -4767,7 +4809,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "bez kompresije"
@@ -4963,7 +5005,7 @@ msgstr "Presloži po ključu"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opcije"
@@ -5002,65 +5044,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Pretvaranje preglednika"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Redak je izbrisan"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Eliminiraj"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "unutar upita"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Prikazivanje redaka"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sek"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Promijeni"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operacije rezultata upita"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Prikaz ispisa (s potpunim tekstovima)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Izradi relaciju"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Veza nije pronađena"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Podaci o verziji"
@@ -5502,8 +5544,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5623,9 +5665,9 @@ msgstr "Raspoložive MIME vrste"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Računalo"
@@ -5636,7 +5678,7 @@ msgid "Generation Time"
msgstr "Vrijeme generiranja"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Verzija poslužitelja"
@@ -5979,7 +6021,30 @@ msgstr "bez kompresije"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Pet"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Podnesi"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Bez izmjena"
@@ -6284,8 +6349,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Korisničko ime"
@@ -6308,7 +6373,7 @@ msgstr "Varijabla"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Vrijednost"
@@ -6326,34 +6391,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Bilo koji korisnik"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Upotrijebi tekstualno polje"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Bilo koje računalo"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokalno"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ovo računalo"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Upotrijebi tablicu poslužitelja"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6417,7 +6482,7 @@ msgstr "Atributi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Dodatno"
@@ -6520,12 +6585,12 @@ msgid "Toggle scratchboard"
msgstr "Uključi bilješke"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznati jezik: %1$s."
@@ -6605,7 +6670,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Pokreni SQL upit na bazi podataka %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Kalendar"
@@ -6640,10 +6705,6 @@ msgstr "Razgraničavanje"
msgid " Show this query here again "
msgstr "Ovaj upit ponovno prikaži ovdje"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Podnesi"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Samo prikaz"
@@ -6652,7 +6713,7 @@ msgstr "Samo prikaz"
msgid "Location of the text file"
msgstr "Lokacija tekstualne datoteke"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "mapa učitavanja web poslužitelja"
@@ -6702,19 +6763,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Navodnik nije zatvoren"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Neispravna ID oznaka"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Nepoznat niz interpunkcija"
@@ -6768,7 +6829,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6817,12 +6878,12 @@ msgid "As defined:"
msgstr "Kako je definirano:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primarni"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Puni tekst"
@@ -6836,7 +6897,7 @@ msgstr ""
"zatražite objašnjenje rada %s ."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Pogon pohrane"
@@ -6844,13 +6905,13 @@ msgstr "Pogon pohrane"
msgid "PARTITION definition"
msgstr "Definicija PARTICIJE"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Dodaj %s polja"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7077,81 +7138,81 @@ msgstr "Datoteke nisu pronađene unutar ZIP arhive!"
msgid "Error in ZIP archive:"
msgstr "Pogreška u ZIP arhivi:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Opće osobine relacija"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL uspoređivanje veza"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Opće osobine relacija"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Verzija protokola"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Korisnik"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL tablica znakova"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Web poslužitelj"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL verzija klijenta"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP ekstenzija"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Prikaži PHP podatke"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Službena stranica programa phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributi"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Bez izmjena"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7163,7 +7224,7 @@ msgstr ""
"pokrenut je sa zadanim postavkama i kao takav otvoren je upadima. Potrebno "
"je ispraviti ovaj sigurnosni nedostatak."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7173,7 +7234,7 @@ msgstr ""
"opcija nije kompatibilna s programom phpMyAdmin i može prouzrokovati "
"oštećivanje nekih podataka!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7183,7 +7244,7 @@ msgstr ""
"tablicu znakova. Bez proširenja mbstring, phpMyAdmin nije u mogućnosti "
"pravilno razdjeljivati naredbe i može doći do neočekivanih rezultata."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7191,24 +7252,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7220,14 +7281,14 @@ msgstr ""
"Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste "
"saznali razloge, pritisnite %sovdje%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7236,7 +7297,7 @@ msgstr ""
"Verzija %s vaše PHP MySQL biblioteke razlikuje se oda vaše verzije %s MySQL "
"poslužitelja. Ovo bi moglo prouzrokovati nepredviđeno ponašanje."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7260,14 +7321,14 @@ msgstr "Datoteke"
msgid "filter tables by name"
msgstr "naziv tablice"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Izradi tablicu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Odaberite bazu podataka"
@@ -7667,109 +7728,109 @@ msgid "Includes all privileges except GRANT."
msgstr "Obuhvaća sve privilegije osim GRANT (Podari)."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Dopušta izmjenu strukture postojećih tablice."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Dopušta izradu novih baze podataka i tablice."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Dopušta izradu pohranjenih rutina."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Dopušta izradu novih tablica."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Dopušta izradu privremenih tablica."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Dopušta izradu novih prikaza."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Dopušta brisanje podataka."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Dopušta odbacivanje baza podataka i tablica."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Dopušta odbacivanje tablica."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Omogućuje postavljanje događaja za planer"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Dopušta pokretanje pohranjenih rutina."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Dopušta uvoz i izvoz podataka iz datoteka."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Dopušta izradu i odbacivanje indeksa."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Dopušta umetanje i zamjenu podataka."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Dopušta zaključavanje tablica u trenutnoj grani."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7777,61 +7838,61 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Omogućuje pregledavanje procesa za sve korisnike"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nema učinka u ovoj verziji MySQL-a."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Potrebno za replikacijske potčinjene."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Dopušta čitanje podataka."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Daje pristup cjelokupnom popisu baza podataka."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Dopušta izvođenje upita SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Dopušta gašenje poslužitelja."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7842,12 +7903,12 @@ msgstr ""
"eliminiranje grana drugih korisnika."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Omogućuje izradu i uklanjanje okidača"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Dopušta mijenjanje podataka."
@@ -7862,238 +7923,238 @@ msgctxt "None privileges"
msgid "None"
msgstr "bez kompresije"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilegije specifične za tablicu"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Opće privilegije"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilegije specifične za bazu podataka"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Opće privilegije"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilegije specifične za bazu podataka"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ograničenja resursa"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "_Podaci prijave"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Ne mijenjaj lozinku"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Korisnici nisu pronađeni."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Korisnik %s već postoji!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Dodali ste novog korisnika."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ažurirali ste privilegije za %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Opozvali ste privilegije za %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lozinka za %s uspješno je promijenjena."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Brisanje %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Nema odabranih korisnika za uklanjanje!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Ponovno učitavanje privilegija"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Odabrani korisnici uspješno su izbrisani."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privilegije su uspješno učitane."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Uredi privilegije"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Opozovi"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Bilo koji"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Pregled korisnika"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Podarivanje"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Dodaj novog korisnika"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Ukloni odabrane korisnike"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Odabrani korisnik nije pronađen u tablici privilegija."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilegije specifične za stupac"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Dodaj privilegije za sljedeće baze podataka"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije za sljedeću tablicu"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Promjena podataka prijave / Kopiranje korisnika"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Izradi novog korisnika s istim privilegijama i..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... zadržati staru."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... izbriši starog iz korisničkih tablica."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Baza podataka za korisnika"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "bez kompresije"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Izradi bazu podataka istog naziva i podari sve privilegije"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Provjeri privilegije za bazu podataka \"%s\"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup u \"%s\""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "opće"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "specifično za bazu podataka"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "džoker"
@@ -9236,7 +9297,7 @@ msgstr "Vrijednost sesije"
msgid "Global value"
msgstr "Opća vrijednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9268,58 +9329,70 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Izmjene su spremljene"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
#, fuzzy
msgid "New server"
msgstr "Web poslužitelj"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokalno"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentacija"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Podaci"
@@ -9548,66 +9621,66 @@ msgstr "Tablica %1$s uspješno je izmijenjena."
msgid "Function"
msgstr "Funkcija"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr ""
" Zbog svoje duljine,
uređivanje ovog polja možda neće biti moguće "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binarno - ne uređuj"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Umetni kao novi redak"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Prikazivanje SQL upita"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "i potom"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Kreni nazad na prethodnu stranicu"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Umetni dodatni novi redak"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Kreni nazad na ovu stranicu"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Uredi sljedeći redak"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, "
"odnosno s tipkama CTRL+Strelice za premještanje bilo kamo"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9771,7 +9844,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Dodaj u indeks %s stupci"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Broj stupaca mora biti veći od nule."
@@ -9797,102 +9870,102 @@ msgstr "Tablica %s kopirana je u %s."
msgid "The table name is empty!"
msgstr "Naziv tablice je prazan!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Izmijeni rasporede tablice po"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(pojedinačno)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Premjesti tablicu u (bazapodataka.tablica):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcije tablice"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Preimenuj tablicu u"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopiraj tablicu u (bazapodataka.tablica):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Prebaci se na kopiranu tablicu"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Održavanje tablice"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentiraj tablicu"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tablica %s je ispražnjena"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Isprazni tablicu (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Izbacivanje podataka za tablicu"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Nema baza podataka"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Održavanje particije"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Particija %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analiziraj"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Provjeri"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimiziraj"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Ponovno izgradi"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Popravi"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Ukloni particioniranje"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Provjeri referencijalan integritet:"
@@ -9900,39 +9973,39 @@ msgstr "Provjeri referencijalan integritet:"
msgid "Show tables"
msgstr "Prikaži tablice"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Iskorištenost prostora"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Upotreba"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Na snazi"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistike redova"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Izjave"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamički"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Duljina retka"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Veličina retka "
@@ -10018,57 +10091,57 @@ msgstr "bez kompresije"
msgid "Column %s has been dropped"
msgstr "Tablica %s je odbačen"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Primarni ključ je dodan na %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Indeks je pridodan na %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Prikaži PHP podatke"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Prikaz relacija"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Predloži strukturu tablice"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Dodaj %s polja"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Pri završetku tablice"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Pri početku tablice"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Poslije %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Izradi indeks %s stupaca"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "particionirano"
@@ -10096,109 +10169,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Vrsta upita"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Dopušta umetanje i zamjenu podataka."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Nema baza podataka"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Podaci"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Vrsta izvoza"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Perzijski"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Izradi relaciju"
@@ -10383,8 +10482,8 @@ msgstr "Preimenuj prikaz u"
#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
#~ "extension. Please check your PHP configuration."
#~ msgstr ""
-#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
-#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
+#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
+#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ msgid ""
#~ "Couldn't load the iconv or recode extension needed for charset "
diff --git a/po/hu.po b/po/hu.po
index a4fd40712b..a19a26ab02 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1,23 +1,23 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2010-09-14 20:45+0200\n"
-"Last-Translator: KAMI \n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
+"PO-Revision-Date: 2011-05-09 14:22+0200\n"
+"Last-Translator: \n"
"Language-Team: hungarian \n"
-"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
-msgstr "Mind látható"
+msgstr "Összes"
#: browse_foreigners.php:70 libraries/common.lib.php:2332
#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
@@ -36,7 +36,7 @@ msgid ""
msgstr ""
"Nem lehetett frissíteni a cél böngészőablakot. Lehet, hogy bezárta a "
"szülőablakot, vagy a böngésző biztonsági beállításai tiltják az ablakok "
-"közti frissítést"
+"közti frissítést."
#: browse_foreigners.php:151 libraries/common.lib.php:2828
#: libraries/common.lib.php:2835 libraries/common.lib.php:3014
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Keresés"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Keresés"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Indítás"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Kulcsnév"
@@ -96,11 +96,11 @@ msgstr "Ezen érték használata"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr "Nincs blobl streaming szerver beállítva!"
+msgstr "Nincs blob streaming szerver beállítva!"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
-msgstr "Fejlécek beszerzése sikertelen."
+msgstr "Fejlécek betöltése sikertelen."
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "A(z) %1$s adatbázis elkészült."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Megjegyzés az adatbázishoz: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tábla megjegyzése"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,11 +138,9 @@ msgstr "Tábla megjegyzése"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
-#, fuzzy
-#| msgid "Column names"
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
-msgstr "Oszlopnevek"
+msgstr "Oszlop"
#: db_datadict.php:168 db_printview.php:104 libraries/Index.class.php:442
#: libraries/db_events.inc.php:25 libraries/db_routines.inc.php:36
@@ -151,11 +149,11 @@ msgstr "Oszlopnevek"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Típus"
@@ -165,8 +163,8 @@ msgstr "Típus"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulla"
@@ -176,7 +174,7 @@ msgstr "Nulla"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Alapértelmezett"
@@ -199,39 +197,40 @@ msgstr "Hivatkozások:"
msgid "Comments"
msgstr "Megjegyzések"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nem"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Igen"
@@ -243,8 +242,8 @@ msgstr "Nyomtatás"
msgid "View dump (schema) of database"
msgstr "Adatbázis kiírás (vázlat) megtekintése"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Nem található tábla az adatbázisban."
@@ -270,112 +269,107 @@ msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént"
msgid "Database %s has been copied to %s"
msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Adatbázis átnevezése"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Parancs"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Adatbázis eltávolítása"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "A(z) %s adatbázis eldobása megtörtént."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Adatbázis eldobása (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Adatbázis másolása"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Csak a szerkezet"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Szerkezet és adatok"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Csak az adatok"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE másolás előtt"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s hozzáadása"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT érték hozzáadása"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Megszorítás hozzáadása"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "A másolt adatbázisra váltás"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Illesztés"
-#: db_operations.php:556
-#, fuzzy, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. To find out why click %shere%s."
+#: db_operations.php:565
+#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra "
-"kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s."
+"A phpMyAdmin konfigurációs tárolója deaktiválva lett. Ha szeretné megtudni, "
+"hogy miért, kattintson %side%s."
-#: db_operations.php:589
-#, fuzzy
-#| msgid "Relational schema"
+#: db_operations.php:600
msgid "Edit or export relational schema"
-msgstr "Kapcsolati séma"
+msgstr "Kapcsolati séma szerkesztése, exportálása"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tábla"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
-msgstr "sor"
+msgstr "sorok"
#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188
msgid "Size"
@@ -389,127 +383,115 @@ msgstr "használatban"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Létrehozás"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Utolsó frissítés"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Utolsó ellenőrzés"
#: db_printview.php:220 db_structure.php:439
-#, fuzzy, php-format
-#| msgid "%s table(s)"
+#, php-format
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tábla"
-msgstr[1] "%s tábla"
+msgstr[1] "%s táblák"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Az SQL-lekérdezés végrehajtása sikerült"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Váltás"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "vizuális tervező"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Rendezés"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Növekvő"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Csökkenő"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Megjelenítés"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Feltételek"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Beszúrás"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "És"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Törlés"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Vagy"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Módosítás"
-#: db_qbe.php:603
-#, fuzzy
-#| msgid "Add/Delete Criteria Row"
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Feltételsor hozzáadása/törlése"
-#: db_qbe.php:615
-#, fuzzy
-#| msgid "Add/Delete Field Columns"
+#: db_qbe.php:618
msgid "Add/Delete columns"
-msgstr "Mezőoszlopok hozzáadása/törlése"
+msgstr "Oszlopok hozzáadása/törlése"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Lekérdezés frissítése"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Felhasználandó táblák"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-lekérdezés a(z) %s adatbázison:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Lekérdezés indítása"
@@ -542,8 +524,7 @@ msgid "Search results for \"%s\" %s:"
msgstr "Keresési eredmények \"%s\" %s:"
#: db_search.php:247
-#, fuzzy, php-format
-#| msgid "%s match(es) inside table %s"
+#, php-format
msgid "%s match inside table %s"
msgid_plural "%s matches inside table %s"
msgstr[0] "%s találat a(z) %s táblában"
@@ -551,30 +532,29 @@ msgstr[1] "%s találat a(z) %s táblában"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Tartalom"
#: db_search.php:259
-#, fuzzy, php-format
-#| msgid "Dumping data for table"
+#, php-format
msgid "Delete the matches for the %s table?"
-msgstr "A tábla adatainak kiíratása"
+msgstr "Törli a találatokat a %s táblában?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Törlés"
#: db_search.php:272
-#, fuzzy, php-format
-#| msgid "Total: %s match(es)"
+#, php-format
msgid "Total: %s match"
msgid_plural "Total: %s matches"
msgstr[0] "Összesen: %s találat"
@@ -601,28 +581,24 @@ msgid "Inside table(s):"
msgstr "Táblá(k)ban:"
#: db_search.php:351
-#, fuzzy
-#| msgid "Inside field:"
msgid "Inside column:"
msgstr "Mezőben:"
#: db_structure.php:59
-#, fuzzy
-#| msgid "No tables found in database."
msgid "No tables found in database"
msgstr "Nem található tábla az adatbázisban."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "A(z) %s tábla kiürítése megtörtént"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "A(z) %s nézet eldobása kész"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "A(z) %s tábla eldobása megtörtént"
@@ -635,14 +611,14 @@ msgstr "Nyomkövetés aktív."
msgid "Tracking is not active."
msgstr "Nyomkövetés inaktív."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
-"%sdokumentációban%s."
+"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
+"sdokumentációban%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -665,22 +641,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "A kijelöltekkel végzendő művelet:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Mind kijelölése"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Kijelölés törlése"
@@ -689,16 +665,16 @@ msgid "Check tables having overhead"
msgstr "A felülírott táblák kijelölése"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportálás"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Nyomtatási nézet"
@@ -710,35 +686,50 @@ msgstr "Kiürítés"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Eldobás"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Tábla ellenőrzése"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Tábla optimalizálása"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Tábla javítása"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Tábla elemzése"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "A táblaadatok lecserélése fájlra"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "A táblaadatok lecserélése fájlra"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Adatkönyvtár"
#: db_tracking.php:79
-#, fuzzy
msgid "Tracked tables"
-msgstr "A zárolt táblák kihagyása"
+msgstr "Nyomon követett táblák"
#: db_tracking.php:84 libraries/config/messages.inc.php:481
#: libraries/export/htmlword.php:89 libraries/export/latex.php:162
@@ -746,10 +737,10 @@ msgstr "A zárolt táblák kihagyása"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Adatbázis"
@@ -757,37 +748,36 @@ msgstr "Adatbázis"
msgid "Last version"
msgstr "Legutolsó verzió"
-#: db_tracking.php:87 tbl_tracking.php:588
-#, fuzzy
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
-msgstr "Létrehozás"
+msgstr "Létrehozva"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "frissítve"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Állapot"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Művelet"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Tábla nyomkövetési adatainak törlése."
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktív"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "nem aktív"
@@ -795,30 +785,26 @@ msgstr "nem aktív"
msgid "Versions"
msgstr "Verziók"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Nyomkövetési jelentés"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
-#, fuzzy
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
-msgstr "Csak a szerkezet"
+msgstr "Szerkezeti pillanatkép"
#: db_tracking.php:181
-#, fuzzy
msgid "Untracked tables"
-msgstr "A zárolt táblák kihagyása"
+msgstr "Nem követett táblák"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
-#, fuzzy
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
-msgstr "Tábla ellenőrzése"
+msgstr "Tábla nyomon követése"
#: db_tracking.php:229
-#, fuzzy
msgid "Database Log"
-msgstr "Adatbázis"
+msgstr "Adatbázis Log"
#: enum_editor.php:21 libraries/tbl_properties.inc.php:793
#, php-format
@@ -856,7 +842,7 @@ msgstr "Kevés a hely a(z) %s fájl mentéséhez."
msgid ""
"File %s already exists on server, change filename or check overwrite option."
msgstr ""
-"már létezik %s fájl a szerveren, változtassa meg a fájlnevet, vagy állítsa "
+"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:311 export.php:315
@@ -872,11 +858,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
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ásának."
+"Ö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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -902,7 +888,7 @@ msgid ""
msgstr ""
"Nem került importálandó adat fogadásra. Vagy nem került átadásra fájlnév, "
"vagy a fájlméret túllépte a PHP beállításokban engedélyezett legnagyobb "
-"méretet. Lásd GYIK 1.16."
+"méretet. Lásd [a@./Documentation.html#faq1_16@Documentation]GYIK 1.16.[/a].."
#: import.php:371 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
@@ -946,6 +932,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Az SQL-lekérdezés végrehajtása sikerült"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -970,268 +963,241 @@ msgstr "Kattintson a kijelölés megszüntetéséhez."
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "A \"DROP DATABASE\" utasítást letiltották."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Valóban a következőt akarja "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
#: js/messages.php:32
-msgid "Dropping Event"
-msgstr "Esemény törlése"
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
#: js/messages.php:33
#, fuzzy
-#| msgid "Procedures"
-msgid "Dropping Procedure"
-msgstr "Eljárások"
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
+
+#: js/messages.php:34
+msgid "Dropping Event"
+msgstr "Esemény törlése"
#: js/messages.php:35
-#, fuzzy
-#| msgid "Allows inserting and replacing data."
-msgid "Deleting tracking data"
-msgstr "Engedélyezi az adatok beírását és megváltoztatását."
+msgid "Dropping Procedure"
+msgstr "Eljárás(ok) eldobása"
-#: js/messages.php:36
+#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr "Nyomkövetési adatok törlése"
+
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Elsődleges kulcs/index törlése"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Ez a művelet sokáig eltarthat. Mindenképp folytatja?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Ön egy BLOB-raktár LETILTÁSÁRA készül!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Biztosan le akarja tiltani a(z) %s adatbázis összes BLOB hivatkozását?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Érték hiányzik az űrlapban!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ez nem szám!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "A hosztnév üres!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Üres a felhasználónév!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Üres a jelszó mező!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Nem egyeznek a jelszavak!"
-#: js/messages.php:52
-#, fuzzy
-#| msgid "Add a new User"
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Új felhasználó hozzáadása"
-#: js/messages.php:53
-#, fuzzy
+#: js/messages.php:55
msgid "Create User"
-msgstr "Kapcsolat létrehozása"
+msgstr "Felhasználó létrehozása"
-#: js/messages.php:54
-#, fuzzy
-#| msgid "Reloading the privileges"
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "A jogok újratöltése"
-#: js/messages.php:55
-#, fuzzy
-#| msgid "Remove selected users"
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "A kijelölt felhasználók törlése"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Bezárás"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Mégse"
-#: js/messages.php:63
-#, fuzzy
-#| msgid "Load"
+#: js/messages.php:65
msgid "Loading"
msgstr "Betöltés"
-#: js/messages.php:64
-#, fuzzy
-#| msgid "Processes"
+#: js/messages.php:66
msgid "Processing Request"
-msgstr "Folyamatok"
+msgstr "Kérés feldolgozása"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Kérés feldolgozása sikertelen"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Oszlop törlése"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Elsődleges kulcs hozzáadása"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Renaming Databases"
-msgstr "Adatbázis átnevezése"
-
-#: js/messages.php:72
-#, fuzzy
-#| msgid "Rename database to"
-msgid "Reload Database"
-msgstr "Adatbázis átnevezése"
-
#: js/messages.php:73
-#, fuzzy
-#| msgid "Copy database to"
+msgid "Renaming Databases"
+msgstr "Adatbázis(ok) átnevezése"
+
+#: js/messages.php:74
+msgid "Reload Database"
+msgstr "Adatbázis újratöltése"
+
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Adatbázis másolása"
-#: js/messages.php:74
-#, fuzzy
-#| msgid "Charset"
-msgid "Changing Charset"
-msgstr "Karakterkészlet"
-
-#: js/messages.php:75
-#, fuzzy
-#| msgid "Table must have at least one field."
-msgid "Table must have at least one column"
-msgstr "A táblázatnak legalább egy mezőt kell tartalmaznia."
-
#: js/messages.php:76
-#, fuzzy
-#| msgid "Create table"
+msgid "Changing Charset"
+msgstr "Karakterkészlet változtatása"
+
+#: js/messages.php:77
+msgid "Table must have at least one column"
+msgstr "A táblázatnak legalább egy oszlopot kell tartalmaznia."
+
+#: js/messages.php:78
msgid "Create Table"
msgstr "Tábla létrehozása"
-#: js/messages.php:81
-#, fuzzy
-#| msgid "Search"
+#: js/messages.php:83
msgid "Searching"
msgstr "Keresés"
-#: js/messages.php:86
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Hide query box"
-msgstr "SQL-lekérdezési panelek"
-
-#: js/messages.php:87
-#, fuzzy
-#| msgid "SQL Query box"
-msgid "Show query box"
-msgstr "SQL-lekérdezési panelek"
-
#: js/messages.php:88
-#, fuzzy
-#| msgid "Engines"
-msgid "Inline Edit"
-msgstr "Motorok"
+msgid "Hide query box"
+msgstr "SQL-lekérdezési panelek elrejtése"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:89
+msgid "Show query box"
+msgstr "SQL-lekérdezési panelek mutatása"
+
+#: js/messages.php:90
+msgid "Inline Edit"
+msgstr "Inline szerkesztés"
+
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Mentés"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Elrejtés"
-#: js/messages.php:93
-#, fuzzy
-#| msgid "SQL Query box"
+#: js/messages.php:95
msgid "Hide search criteria"
-msgstr "SQL-lekérdezési panelek"
+msgstr "Keresési kritériumok elrejtése"
-#: js/messages.php:94
-#, fuzzy
-#| msgid "SQL Query box"
+#: js/messages.php:96
msgid "Show search criteria"
-msgstr "SQL-lekérdezési panelek"
+msgstr "Keresési kritériumok mutatása"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Kihagyás"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Válassza ki a hivatkozott kulcsot"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Idegen kulcs kiválasztása"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
-#, fuzzy
-#| msgid "Choose field to display"
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
-msgstr "Válassza ki a megjelenítendő mezőt"
+msgstr "Válassza ki a megjelenítendő oszlopot"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
-#, fuzzy
-#| msgid "Generate Password"
+msgid "Add an option for column "
+msgstr "Adjon meg egy opciót az oszlophoz"
+
+#: js/messages.php:112
msgid "Generate password"
msgstr "Jelszó generálása"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generálás"
-#: js/messages.php:111
-#, fuzzy
-#| msgid "Change password"
+#: js/messages.php:114
msgid "Change Password"
msgstr "Jelszó megváltoztatása"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Több"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1241,306 +1207,262 @@ msgstr ""
"%s, kiadás dátuma: %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
-#, fuzzy
-#| msgid "Check for latest version"
+#: js/messages.php:122
msgid ", latest stable version:"
-msgstr "Új verzió ellenőrzése"
+msgstr ", utolsó stabil verzió:"
+
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Adatbázisra ugrás"
#. l10n: Display text for calendar close link
-#: js/messages.php:137
-#, fuzzy
-#| msgid "Donate"
+#: js/messages.php:141
msgid "Done"
-msgstr "Adományozás"
+msgstr "Kész"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
-#, fuzzy
-#| msgid "Previous"
+#: js/messages.php:143
msgid "Prev"
msgstr "Előző"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Következő"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
-#, fuzzy
-#| msgid "Total"
+#: js/messages.php:147
msgid "Today"
-msgstr "Összesen"
+msgstr "Ma"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Január"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Február"
-#: js/messages.php:148
-#, fuzzy
-#| msgid "Mar"
+#: js/messages.php:152
msgid "March"
-msgstr "márc."
+msgstr "Március"
-#: js/messages.php:149
-#, fuzzy
-#| msgid "Apr"
+#: js/messages.php:153
msgid "April"
-msgstr "ápr."
+msgstr "Április"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "máj."
-#: js/messages.php:151
-#, fuzzy
-#| msgid "Jun"
+#: js/messages.php:155
msgid "June"
-msgstr "jún."
+msgstr "Június"
-#: js/messages.php:152
-#, fuzzy
-#| msgid "Jul"
+#: js/messages.php:156
msgid "July"
-msgstr "júl."
+msgstr "Július"
-#: js/messages.php:153
-#, fuzzy
-#| msgid "Aug"
+#: js/messages.php:157
msgid "August"
-msgstr "aug."
+msgstr "Augusztus"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "szept."
-#: js/messages.php:155
-#, fuzzy
-#| msgid "Oct"
+#: js/messages.php:159
msgid "October"
-msgstr "okt."
+msgstr "Október"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Nov."
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Dec."
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan."
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "febr."
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "márc."
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "ápr."
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
-#, fuzzy
-#| msgid "May"
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "máj."
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jún."
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "júl."
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "aug."
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "szept."
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt."
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov."
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec."
-#: js/messages.php:186
-#, fuzzy
-#| msgid "Sun"
-msgid "Sunday"
-msgstr "V"
-
-#: js/messages.php:187
-#, fuzzy
-#| msgid "Mon"
-msgid "Monday"
-msgstr "H"
-
-#: js/messages.php:188
-#, fuzzy
-#| msgid "Tue"
-msgid "Tuesday"
-msgstr "K"
-
-#: js/messages.php:189
-msgid "Wednesday"
-msgstr "Sze"
-
#: js/messages.php:190
-msgid "Thursday"
-msgstr "K"
+msgid "Sunday"
+msgstr "Vasárnap"
#: js/messages.php:191
-#, fuzzy
-#| msgid "Fri"
-msgid "Friday"
-msgstr "P"
+msgid "Monday"
+msgstr "Hétfő"
#: js/messages.php:192
+msgid "Tuesday"
+msgstr "Kedd"
+
+#: js/messages.php:193
+msgid "Wednesday"
+msgstr "Szerda"
+
+#: js/messages.php:194
+msgid "Thursday"
+msgstr "Csütörtök"
+
+#: js/messages.php:195
+msgid "Friday"
+msgstr "Péntek"
+
+#: js/messages.php:196
msgid "Saturday"
-msgstr "Szo"
+msgstr "Szombat"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "V"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "H"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "K"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Cs"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Szo"
#. l10n: Minimal week day name
-#: js/messages.php:212
-#, fuzzy
-#| msgid "Sun"
+#: js/messages.php:216
msgid "Su"
msgstr "V"
#. l10n: Minimal week day name
-#: js/messages.php:214
-#, fuzzy
-#| msgid "Mon"
+#: js/messages.php:218
msgid "Mo"
msgstr "H"
#. l10n: Minimal week day name
-#: js/messages.php:216
-#, fuzzy
-#| msgid "Tue"
+#: js/messages.php:220
msgid "Tu"
msgstr "K"
#. l10n: Minimal week day name
-#: js/messages.php:218
-#, fuzzy
-#| msgid "Wed"
+#: js/messages.php:222
msgid "We"
msgstr "Sze"
#. l10n: Minimal week day name
-#: js/messages.php:220
-#, fuzzy
-#| msgid "Thu"
+#: js/messages.php:224
msgid "Th"
msgstr "Cs"
#. l10n: Minimal week day name
-#: js/messages.php:222
-#, fuzzy
-#| msgid "Fri"
+#: js/messages.php:226
msgid "Fr"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:224
-#, fuzzy
-#| msgid "Sat"
+#: js/messages.php:228
msgid "Sa"
msgstr "Szo"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
-#, fuzzy
-#| msgid "Wiki"
-msgid "Wk"
-msgstr "Wiki"
-
-#: js/messages.php:228
-msgid "Hour"
-msgstr ""
-
-#: js/messages.php:229
-#, fuzzy
-#| msgid "in use"
-msgid "Minute"
-msgstr "használatban"
-
#: js/messages.php:230
-#, fuzzy
-#| msgid "per second"
+msgid "Wk"
+msgstr "Hét"
+
+#: js/messages.php:232
+msgid "Hour"
+msgstr "Óra"
+
+#: js/messages.php:233
+msgid "Minute"
+msgstr "Perc"
+
+#: js/messages.php:234
msgid "Second"
-msgstr "másodpercenként"
+msgstr "másodperc"
#: libraries/Config.class.php:1190 tbl_chart.php:159
msgid "Font size"
@@ -1591,33 +1513,33 @@ msgid "No index defined!"
msgstr "Nincs meghatározott index!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indexek"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Egyedi"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Csomagolt"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Számosság"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Megjegyzés"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Módosítás"
@@ -1641,36 +1563,33 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Adatbázisok"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Hiba"
-#: libraries/Message.class.php:281
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
+#: libraries/Message.class.php:260
+#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d sor érintett."
msgstr[1] "%1$d sor érintett."
-#: libraries/Message.class.php:300
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
+#: libraries/Message.class.php:279
+#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "A(z) %1$d sor törlése megtörtént."
msgstr[1] "A(z) %1$d sor törlése megtörtént."
-#: libraries/Message.class.php:319
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
+#: libraries/Message.class.php:298
+#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] "A(z) %1$d sor beszúrása megtörtént."
@@ -1762,11 +1681,11 @@ msgstr "Üdvözli a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
-"%1$stelepítőszkripttel%2$s el tudja készíteni."
+"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
+"$stelepítőszkripttel%2$s el tudja készíteni."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1863,10 +1782,8 @@ msgid "PBMS error"
msgstr "PBMS hiba"
#: libraries/blobstreaming.lib.php:267
-#, fuzzy
-#| msgid "MySQL connection collation"
msgid "PBMS connection failed:"
-msgstr "MySQL kapcsolat illesztése"
+msgstr "PBMS kapcsolat sikertelen."
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
@@ -1895,11 +1812,11 @@ msgstr "Fájl letöltése"
#: libraries/blobstreaming.lib.php:421
#, php-format
msgid "Could not open file: %s"
-msgstr ""
+msgstr "Nem lehetett megnyitni a %s fájlt"
#: libraries/bookmark.lib.php:83
msgid "shared"
-msgstr ""
+msgstr "megosztott"
#: libraries/build_html_for_db.lib.php:25
#: libraries/config/messages.inc.php:180 libraries/export/xml.php:36
@@ -1915,36 +1832,33 @@ msgstr "Táblák"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Adatok"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Összesen"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Felülírás"
#: libraries/build_html_for_db.lib.php:93
-#, fuzzy
msgid "Jump to database"
-msgstr "Nincs adatbázis"
+msgstr "Adatbázisra ugrás"
#: libraries/build_html_for_db.lib.php:130
msgid "Not replicated"
-msgstr ""
+msgstr "Nem replikált"
#: libraries/build_html_for_db.lib.php:136
-#, fuzzy
-#| msgid "Replication"
msgid "Replicated"
-msgstr "Többszörözés"
+msgstr "Többszörözzött"
#: libraries/build_html_for_db.lib.php:150
#, php-format
@@ -1956,32 +1870,28 @@ msgid "Check Privileges"
msgstr "Jogok ellenőrzése"
#: libraries/chart.lib.php:40
-#, fuzzy
-#| msgid "Show statistics"
msgid "Query statistics"
-msgstr "A statisztika megjelenítése"
+msgstr "Lekérdezések statisztikája"
#: libraries/chart.lib.php:63
msgid "Query execution time comparison (in microseconds)"
-msgstr ""
+msgstr "lekérdezések futási idejének összehasonlítása (mikromásodpercekben)"
#: libraries/chart.lib.php:83
-#, fuzzy
-#| msgid "Query results operations"
msgid "Query results"
-msgstr "Műveletek a lekérdezési eredménnyel"
+msgstr "Lekérdezés eredményei"
#: libraries/chart.lib.php:109
msgid "No data found for the chart."
-msgstr ""
+msgstr "Nem található adat a grafikonhoz"
#: libraries/chart.lib.php:249
msgid "GD extension is needed for charts."
-msgstr ""
+msgstr "GD bővítmény szükséges a grafikonokhoz."
#: libraries/chart.lib.php:252
msgid "JSON encoder is needed for chart tooltips."
-msgstr ""
+msgstr "JSON encoder szükséges a grafikon tooltip-jeihez"
#: libraries/common.inc.php:576
msgid ""
@@ -2000,8 +1910,7 @@ msgstr ""
"rendben."
#: libraries/common.inc.php:587
-#, fuzzy, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
+#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
"Nem lehetett betölteni az alapértelmezett konfigurációt innen: \"%1$s\""
@@ -2015,8 +1924,7 @@ msgstr ""
"KELL megadni!"
#: libraries/common.inc.php:622
-#, fuzzy, php-format
-#| msgid "Invalid server index: \"%s\""
+#, php-format
msgid "Invalid server index: %s"
msgstr "Érvénytelen szerverindex: \"%s\""
@@ -2026,16 +1934,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Szerver"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Frissítenie kell %s %s vagy újabb verzióra."
@@ -2070,7 +1978,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentáció"
@@ -2084,10 +1992,8 @@ msgid "MySQL said: "
msgstr "A MySQL mondta: "
#: libraries/common.lib.php:1098
-#, fuzzy
-#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
-msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez"
+msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz"
#: libraries/common.lib.php:1139 libraries/config/messages.inc.php:462
msgid "Explain SQL"
@@ -2120,7 +2026,7 @@ msgstr "SQL érvényesítése"
#: libraries/common.lib.php:1265
msgid "Inline edit of this query"
-msgstr ""
+msgstr "lekérdezés inline szerkesztése"
#: libraries/common.lib.php:1267
#, fuzzy
@@ -2222,7 +2128,7 @@ msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Szerkezet"
@@ -2248,90 +2154,80 @@ msgstr "Műveletek"
#: libraries/common.lib.php:2966
msgid "Browse your computer:"
-msgstr ""
+msgstr "Számítógép tallózása:"
#: libraries/common.lib.php:2979
-#, fuzzy, php-format
-#| msgid "web server upload directory"
+#, php-format
msgid "Select from the web server upload directory %s:"
-msgstr "webszerver feltöltési könyvtár"
+msgstr "Válasszon a szerver feltöltési könyvtárából %s :"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Nem elérhető a feltöltésekhez megadott könyvtár"
#: libraries/common.lib.php:2999
msgid "There are no files to upload"
-msgstr ""
+msgstr "Nincsenek feltöltendő fájlok"
#: libraries/config.values.php:45 libraries/config.values.php:50
msgid "Both"
-msgstr ""
+msgstr "Mind"
#: libraries/config.values.php:74
msgid "Open"
-msgstr ""
+msgstr "Nyitott"
#: libraries/config.values.php:74
-#, fuzzy
-#| msgid "Unclosed quote"
msgid "Closed"
-msgstr "Lezáratlan idézőjel"
+msgstr "Zárt"
#: libraries/config.values.php:95 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
#: libraries/import.lib.php:1172
-#, fuzzy
msgid "structure"
-msgstr "Szerkezet"
+msgstr "szerkezet"
#: libraries/config.values.php:96 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
msgid "data"
-msgstr ""
+msgstr "adat"
#: libraries/config.values.php:97 libraries/export/htmlword.php:24
#: libraries/export/latex.php:41 libraries/export/odt.php:33
#: libraries/export/sql.php:79 libraries/export/texytext.php:23
-#, fuzzy
-#| msgid "Structure and data"
msgid "structure and data"
-msgstr "Szerkezet és adatok"
+msgstr "szerkezet és adatok"
#: libraries/config.values.php:99
msgid "Quick - display only the minimal options to configure"
-msgstr ""
+msgstr "Gyors - csak a minimális beállítási lehetőségeket mutatja"
#: libraries/config.values.php:100
msgid "Custom - display all possible options to configure"
-msgstr ""
+msgstr "Egyéni - az összes beállítási lehetőségeket mutatja"
#: libraries/config.values.php:101
msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
+msgstr "Egyéni - mint fentebb, de gyors/egyéni választási lehetőség nélkül"
#: libraries/config.values.php:119
-#, fuzzy
-#| msgid "Complete inserts"
msgid "complete inserts"
-msgstr "Teljes beszúrások"
+msgstr "teljes beillesztések"
#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Extended inserts"
msgid "extended inserts"
-msgstr "Kiterjesztett beszúrások"
+msgstr "kiterjesztett beillesztések"
#: libraries/config.values.php:121
msgid "both of the above"
-msgstr ""
+msgstr "a fentiekből mindkettő"
#: libraries/config.values.php:122
msgid "neither of the above"
-msgstr ""
+msgstr "a fentiekből egyik sem"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2358,7 +2254,7 @@ msgstr "Az érték pontatlan"
#: libraries/config/validate.lib.php:464
#, php-format
msgid "Value must be equal or lower than %s"
-msgstr ""
+msgstr "Az értéknek egyenlőnek, vagy kevesebbnek kell lennie, mint %s"
#: libraries/config/FormDisplay.class.php:538
#, php-format
@@ -2367,46 +2263,42 @@ msgstr "%s adatai hiányoznak"
#: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740
-#, fuzzy
-#| msgid "Variable"
msgid "unavailable"
-msgstr "Változó"
+msgstr "nem elérhető"
#: libraries/config/FormDisplay.class.php:737
#: libraries/config/FormDisplay.class.php:741
#, php-format
msgid "\"%s\" requires %s extension"
-msgstr ""
+msgstr "\"%s\" követelménye a(z) %s bővítmény"
#: libraries/config/FormDisplay.class.php:755
#, php-format
msgid "import will not work, missing function (%s)"
-msgstr ""
+msgstr "importálás nem fog működni, hiányzó funkció: (%s)"
#: libraries/config/FormDisplay.class.php:759
#, php-format
msgid "export will not work, missing function (%s)"
-msgstr ""
+msgstr "exportálás nem fog működni, hiányzó funkció: (%s)"
#: libraries/config/FormDisplay.class.php:766
msgid "SQL Validator is disabled"
-msgstr ""
+msgstr "SQL validátor kikapcsolva"
#: libraries/config/FormDisplay.class.php:773
-#, fuzzy
-#| msgid "PHP extension to use"
msgid "SOAP extension not found"
-msgstr "Használandó PHP-kiterjesztés"
+msgstr "SOAP bővítmény nem található"
#: libraries/config/FormDisplay.class.php:781
-#, fuzzy, php-format
-#| msgid "Maximum tables"
+#, php-format
msgid "maximum %s"
-msgstr "A táblák száma"
+msgstr "maximum %s"
#: libraries/config/FormDisplay.tpl.php:173
msgid "This setting is disabled, it will not be applied to your configuration"
msgstr ""
+"Ez a beállítás le van tiltva, nem lesz alkalmazva az Ön konfigurációjában"
#: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89
#: libraries/relation.lib.php:96 pmd_relation_new.php:68
@@ -2425,23 +2317,21 @@ msgstr "Alapértelmezett érték visszaállítása"
#: libraries/config/FormDisplay.tpl.php:269
msgid "Allow users to customize this value"
-msgstr ""
+msgstr "Engedélyezi a felhasználóknak az érték módosítását"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Törlés"
#: libraries/config/messages.inc.php:17
msgid "Improves efficiency of screen refresh"
-msgstr ""
+msgstr "A képernyőfrissítés hatékonyságát növeli"
#: libraries/config/messages.inc.php:18
-#, fuzzy
-#| msgid "Enabled"
msgid "Enable Ajax"
-msgstr "Engedélyezett"
+msgstr "Ajax engedélyezése"
#: libraries/config/messages.inc.php:19
msgid ""
@@ -2460,10 +2350,13 @@ msgid ""
"inside a frame, and is a potential [strong]security hole[/strong] allowing "
"cross-frame scripting attacks"
msgstr ""
+"Ezt engedélyezve egy másik domain-on lévő oldal meg tudja hívni a phpMyAdmin-"
+"t egy kereten belül, és ez egy potenciális [strong]biztonsági rés[/strong], "
+"ami lehetővé teszi a \"cross-frame scripting\" támadásokat"
#: libraries/config/messages.inc.php:22
msgid "Allow third party framing"
-msgstr ""
+msgstr "Harmadik fél keret-használatának engedélyezése"
#: libraries/config/messages.inc.php:23
msgid "Show "Drop database" link to normal users"
@@ -2512,23 +2405,16 @@ msgid "Bzip2"
msgstr "Bzip2"
#: libraries/config/messages.inc.php:32
-#, fuzzy
-#| msgid ""
-#| "Defines which type of editing controls should be used for CHAR and "
-#| "VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]"
-#| "textarea[/kbd] - allows newlines in fields"
msgid ""
"Defines which type of editing controls should be used for CHAR and VARCHAR "
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
"Meghatározza, hogy mely szerkesztő vezérlőket kell használni a CHAR és a "
-"VARCHAR mezőknél; [kbd]input[/kbd] - korlátozhatóvá tszi a bevitel hosszát, "
+"VARCHAR mezőknél; [kbd]input[/kbd] - korlátozhatóvá teszi a bevitel hosszát, "
"[kbd]textarea[/kbd] - új sorokat engedélyez a mezőkben"
#: libraries/config/messages.inc.php:33
-#, fuzzy
-#| msgid "CHAR fields editing"
msgid "CHAR columns editing"
msgstr "CHAR mezők szerkesztése"
@@ -2566,7 +2452,7 @@ msgid "Compress on the fly"
msgstr "Menet közbeni tömörítés"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfigurációs fájl"
@@ -2584,23 +2470,23 @@ msgstr "A DROP lekérdezések megerősítése"
#: libraries/config/messages.inc.php:44
msgid "Debug SQL"
-msgstr ""
+msgstr "SQL Debug"
#: libraries/config/messages.inc.php:45
-#, fuzzy
-#| msgid "Databases display options"
msgid "Default display direction"
-msgstr "Az adatbázisok megjelenítésének beállításai"
+msgstr "Alapértelmezett megjelenítési irány"
#: libraries/config/messages.inc.php:46
msgid ""
"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates "
"maximum number for which vertical model is used"
msgstr ""
+"[kbd]horizontal[/kbd], [kbd]vertical[/kbd], vagy egy szám, ami megadja a "
+"maximum vertikális modellek számát"
#: libraries/config/messages.inc.php:47
msgid "Display direction for altering/creating columns"
-msgstr ""
+msgstr "Megjelenítés iránya oszlopok szerkesztése/létrehozása esetén"
#: libraries/config/messages.inc.php:48
msgid "Tab that is displayed when entering a database"
@@ -2627,14 +2513,12 @@ msgid "Default table tab"
msgstr "Alapértelmezett tábla fül"
#: libraries/config/messages.inc.php:54
-#, fuzzy
msgid "Show binary contents as HEX by default"
-msgstr "Bináris tartalom megjelenítése"
+msgstr "Bináris tartalom megjelenítése HEX-ként, mint alapértelmezett"
#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:585
-#, fuzzy
msgid "Show binary contents as HEX"
-msgstr "Bináris tartalom megjelenítése"
+msgstr "Bináris tartalom megjelenítése HEX-ként"
#: libraries/config/messages.inc.php:56
msgid "Show database listing as a list instead of a drop down"
@@ -2654,35 +2538,29 @@ msgstr "A szerverek megjelenítése listaként"
#: libraries/config/messages.inc.php:60
msgid "Edit SQL queries in popup window"
-msgstr ""
+msgstr "SQL lekérdezések szerkesztése felugró ablakban"
#: libraries/config/messages.inc.php:61
-#, fuzzy
-#| msgid "Edit next row"
msgid "Edit in window"
-msgstr "Következő sor szerkesztése"
+msgstr "Szerkesztés ablakban"
#: libraries/config/messages.inc.php:62
-#, fuzzy
-#| msgid "Display Features"
msgid "Display errors"
-msgstr "Tulajdonságok megjelenítése"
+msgstr "Hibák megjelenítése"
#: libraries/config/messages.inc.php:63
-#, fuzzy
-#| msgid "Ignore errors"
msgid "Gather errors"
-msgstr "A hibák figyelmen kívül hagyása"
+msgstr "Hibák összegyűjtése"
#: libraries/config/messages.inc.php:64
msgid "Show icons for warning, error and information messages"
msgstr ""
+"Ikonok mutatása figyelmeztetések, hibaüzenetek, és információs üzenetek "
+"esetén"
#: libraries/config/messages.inc.php:65
-#, fuzzy
-#| msgid "Ignore errors"
msgid "Iconic errors"
-msgstr "A hibák figyelmen kívül hagyása"
+msgstr "Ikonnal kapcsolatos hibák"
#: libraries/config/messages.inc.php:66
msgid ""
@@ -2705,7 +2583,7 @@ msgid "Character set of the file"
msgstr "A fájl karakterkészlete"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formátum"
@@ -2722,24 +2600,18 @@ msgstr "Tömörítés"
#: libraries/export/latex.php:71 libraries/export/ods.php:24
#: libraries/export/odt.php:57 libraries/export/texytext.php:27
#: libraries/export/xls.php:24 libraries/export/xlsx.php:24
-#, fuzzy
-#| msgid "Put fields names in the first row"
msgid "Put columns names in the first row"
msgstr "A mezőneveket az első sorba teszi"
#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:238
#: libraries/config/messages.inc.php:245 libraries/import/csv.php:75
#: libraries/import/ldi.php:41
-#, fuzzy
-#| msgid "Fields enclosed by"
msgid "Columns enclosed by"
-msgstr "Mező lezárás"
+msgstr "Mező lezárása"
#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:239
#: libraries/config/messages.inc.php:246 libraries/import/csv.php:80
#: libraries/import/ldi.php:42
-#, fuzzy
-#| msgid "Fields escaped by"
msgid "Columns escaped by"
msgstr "Mező escape karakter"
@@ -2752,18 +2624,14 @@ msgid "Replace NULL by"
msgstr "NULL cseréje ezzel:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82
-#, fuzzy
-#| msgid "Remove CRLF characters within fields"
msgid "Remove CRLF characters within columns"
msgstr "A mezőkben lévő CRLF karakterek eltávolítása"
#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:242
#: libraries/config/messages.inc.php:250 libraries/import/csv.php:62
#: libraries/import/ldi.php:40
-#, fuzzy
-#| msgid "Lines terminated by"
msgid "Columns terminated by"
-msgstr "Sorok vége"
+msgstr "Mezők vége"
#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:237
#: libraries/import/csv.php:85 libraries/import/ldi.php:43
@@ -2771,10 +2639,8 @@ msgid "Lines terminated by"
msgstr "Sorok vége"
#: libraries/config/messages.inc.php:80
-#, fuzzy
-#| msgid "Excel edition"
msgid "Excel edition"
-msgstr "Excel szerkesztés"
+msgstr "Excel változat"
#: libraries/config/messages.inc.php:83
msgid "Database name template"
@@ -2793,10 +2659,8 @@ msgstr "Táblanév-sablon"
#: libraries/config/messages.inc.php:140 libraries/export/htmlword.php:23
#: libraries/export/latex.php:39 libraries/export/odt.php:31
#: libraries/export/sql.php:77 libraries/export/texytext.php:22
-#, fuzzy
-#| msgid "%s table(s)"
msgid "Dump table"
-msgstr "%s tábla"
+msgstr "Dump tábla"
#: libraries/config/messages.inc.php:90 libraries/export/latex.php:31
msgid "Include table caption"
@@ -2828,10 +2692,8 @@ msgid "Relations"
msgstr "Kapcsolatok"
#: libraries/config/messages.inc.php:103
-#, fuzzy
-#| msgid "Export type"
msgid "Export method"
-msgstr "Exportálás típusa"
+msgstr "Exportálás módja"
#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114
msgid "Save on server"
@@ -2847,8 +2709,6 @@ msgid "Remember file name template"
msgstr "A fájlnévsablon megjegyzése"
#: libraries/config/messages.inc.php:118
-#, fuzzy
-#| msgid "Enclose table and field names with backquotes"
msgid "Enclose table and column names with backquotes"
msgstr "Idézőjelek használata a tábla- és mezőneveknél"
@@ -2859,7 +2719,7 @@ msgstr "SQL kompatibilitási mód"
#: libraries/config/messages.inc.php:120
msgid "Syntax to use when inserting data"
-msgstr ""
+msgstr "Adat beillesztésére vonatkozó szintaxis"
#: libraries/config/messages.inc.php:121
msgid "Creation/Update/Check dates"
@@ -2886,7 +2746,6 @@ msgid "Maximal length of created query"
msgstr "A létrehozott lekérdezés hossza legfeljebb"
#: libraries/config/messages.inc.php:135
-#, fuzzy
msgid "Export type"
msgstr "Exportálás típusa"
@@ -2895,9 +2754,8 @@ msgid "Enclose export in a transaction"
msgstr "Az exportálás befoglalása egy tranzakcióban"
#: libraries/config/messages.inc.php:137
-#, fuzzy
msgid "Export time in UTC"
-msgstr "Exportálás alapértelmezései"
+msgstr "Exportálás időzónája UTC"
#: libraries/config/messages.inc.php:145
msgid "Force secured connection while using phpMyAdmin"
@@ -2939,10 +2797,8 @@ msgstr "A tallózó mód testreszabása"
#: libraries/config/messages.inc.php:173 libraries/config/messages.inc.php:184
#: libraries/config/messages.inc.php:186 libraries/config/messages.inc.php:214
#: libraries/config/messages.inc.php:226
-#, fuzzy
-#| msgid "Customize default export options"
msgid "Customize default options"
-msgstr "Az exportálás alapértelmezett beállításainak testreszabása"
+msgstr "Alapértelmezett beállítások testreszabása"
#: libraries/config/messages.inc.php:155 libraries/config/setup.forms.php:232
#: libraries/config/setup.forms.php:311
@@ -2954,11 +2810,11 @@ msgstr "CSV"
#: libraries/config/messages.inc.php:157
msgid "Developer"
-msgstr ""
+msgstr "Fejlesztő"
#: libraries/config/messages.inc.php:158
msgid "Settings for phpMyAdmin developers"
-msgstr ""
+msgstr "phpMyAdmin fejlesztők beállításai"
#: libraries/config/messages.inc.php:159
msgid "Edit mode"
@@ -2982,14 +2838,12 @@ msgid "Features"
msgstr "Funkciók"
#: libraries/config/messages.inc.php:165
-#, fuzzy
-#| msgid "Generate"
msgid "General"
-msgstr "Generálás"
+msgstr "Általános"
#: libraries/config/messages.inc.php:166
msgid "Set some commonly used options"
-msgstr ""
+msgstr "Gyakran használt opciók beállítása"
#: libraries/config/messages.inc.php:167 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:73 libraries/tbl_links.inc.php:82
@@ -3032,7 +2886,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "A navigációs keret megjelenésének testreszabása"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Szerverek"
@@ -3050,11 +2904,9 @@ msgstr "Főkeret"
#: libraries/config/messages.inc.php:183
msgid "Microsoft Office"
-msgstr ""
+msgstr "Microsoft Office"
#: libraries/config/messages.inc.php:185
-#, fuzzy
-#| msgid "Open Document Text"
msgid "Open Document"
msgstr "Open Document szöveges dokumentum"
@@ -3067,10 +2919,8 @@ msgid "Settings that didn't fit enywhere else"
msgstr "A sehova sem illő beállítások"
#: libraries/config/messages.inc.php:189
-#, fuzzy
-#| msgid "Page number:"
msgid "Page titles"
-msgstr "Oldalszám:"
+msgstr "Oldalcímek"
#: libraries/config/messages.inc.php:190
msgid ""
@@ -3078,6 +2928,9 @@ msgid ""
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
"get special values."
msgstr ""
+"Megadhatja a böngésző fejlécében megjelenített címet. Hivatkozzon a "
+"[a@Documentation.html#cfg_TitleTable]dokumentációra[/a] a mágikus parancsok "
+"végett, amiket speciális értékek megjelenítésére használhat."
#: libraries/config/messages.inc.php:191
#: libraries/navigation_header.inc.php:83
@@ -3107,16 +2960,12 @@ msgid "Basic settings"
msgstr "Alapbeállítások"
#: libraries/config/messages.inc.php:196
-#, fuzzy
-#| msgid "Authentication type"
msgid "Authentication"
msgstr "Hitelesítés típusa"
#: libraries/config/messages.inc.php:197
-#, fuzzy
-#| msgid "Authentication type"
msgid "Authentication settings"
-msgstr "Hitelesítés típusa"
+msgstr "Hitelesítés beállításai"
#: libraries/config/messages.inc.php:198
msgid "Server configuration"
@@ -3135,35 +2984,30 @@ msgid "Enter server connection parameters"
msgstr "Írja be a szerver csatlakozási paramétereit"
#: libraries/config/messages.inc.php:201
-#, fuzzy
-#| msgid "Configuration file"
msgid "Configuration storage"
-msgstr "Konfigurációs fájl"
+msgstr "Konfigurációs tároló"
#: libraries/config/messages.inc.php:202
-#, fuzzy
-#| msgid ""
-#| "Configure phpMyAdmin database to gain access to additional features, see "
-#| "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] "
-#| "in documentation"
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration "
"storage[/a] in documentation"
msgstr ""
-"A phpMyAdmin adatbázis konfigurálásával további funkciókhoz nyer "
-"hozzáférést, lásd a [a@../Documentation.html#linked-tables]csatolt táblák "
-"infrastruktúra[/a] fejezetet a dokumentációban"
+"A phpMyAdmin konfigurációs tároló beállításával további funkciókhoz nyer "
+"hozzáférést, hivatkozzon a [a@Documentation.html#linked-tables]phpMyadmin "
+"konfigurációs tárolók[/a] fejezetet a dokumentációban"
#: libraries/config/messages.inc.php:203
msgid "Changes tracking"
-msgstr ""
+msgstr "Változások követése"
#: libraries/config/messages.inc.php:204
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
+"Változások követése az adatbázisban. phpMyAdmin konfigurációs tároló "
+"szükséges."
#: libraries/config/messages.inc.php:205
msgid "Customize export options"
@@ -3195,16 +3039,12 @@ msgid "Customize links shown in SQL Query boxes"
msgstr "Az SQL-lekérdezési panelekben látható hivatkozások testreszabása"
#: libraries/config/messages.inc.php:216
-#, fuzzy
-#| msgid "SQL queries"
msgid "SQL queries settings"
-msgstr "SQL-lekérdezések"
+msgstr "SQL-lekérdezések beállításai"
#: libraries/config/messages.inc.php:217
-#, fuzzy
-#| msgid "SQL history"
msgid "SQL Validator"
-msgstr "SQL-előzmények"
+msgstr "SQL-validátor"
#: libraries/config/messages.inc.php:218
msgid ""
@@ -3213,6 +3053,11 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
+"Amennyiben szeretné használni az SQL-validátor szolgáltatást, tudatában kell "
+"lennie annak, hogy [strong]minden SQL parancsot névtelenül tároljuk "
+"statisztikai okokból[/strong]. [br][em][a@http://sqlvalidator.mimer.com/]"
+"Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. All "
+"rights reserved.[/em]"
#: libraries/config/messages.inc.php:219
msgid "Startup"
@@ -3231,30 +3076,24 @@ msgid "Choose how you want tabs to work"
msgstr "Válassza ki, hogyan kívánja használni a füleket"
#: libraries/config/messages.inc.php:223
-#, fuzzy
-#| msgid "Use text field"
msgid "Text fields"
-msgstr "Szöveges mező használata"
+msgstr "Szöveges mezők"
#: libraries/config/messages.inc.php:224
-#, fuzzy
-#| msgid "Customize export options"
msgid "Customize text input fields"
-msgstr "Exportálás beállításainak testreszabása"
+msgstr "Szöveges beviteli mezők testreszabása"
#: libraries/config/messages.inc.php:225 libraries/export/texytext.php:17
msgid "Texy! text"
msgstr "Texy! szöveg"
#: libraries/config/messages.inc.php:227
-#, fuzzy
-#| msgid "Warning"
msgid "Warnings"
-msgstr "Figyelmeztetés"
+msgstr "Figyelmeztetések"
#: libraries/config/messages.inc.php:228
msgid "Disable some of the warnings shown by phpMyAdmin"
-msgstr ""
+msgstr "Egyes phpMyAdmin által megjelenített figyelmeztetések letiltása"
#: libraries/config/messages.inc.php:229
msgid ""
@@ -3301,7 +3140,7 @@ msgstr "Részleges importálás: a megszakítás engedélyezése"
#: libraries/config/messages.inc.php:240 libraries/config/messages.inc.php:247
#: libraries/import/csv.php:26 libraries/import/ldi.php:39
msgid "Do not abort on INSERT error"
-msgstr ""
+msgstr "Ne legyen megszakítás INSERT hiba esetén"
#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:249
#: libraries/import/csv.php:25 libraries/import/ldi.php:38
@@ -3326,42 +3165,36 @@ msgstr "LOCAL kulcsszó használata"
#: libraries/config/messages.inc.php:251 libraries/config/messages.inc.php:259
#: libraries/config/messages.inc.php:260
-#, fuzzy
-#| msgid "Put fields names in the first row"
msgid "Column names in first row"
-msgstr "A mezőneveket az első sorba teszi"
+msgstr "A mezőnevek az első sorban"
#: libraries/config/messages.inc.php:252 libraries/import/ods.php:27
msgid "Do not import empty rows"
-msgstr ""
+msgstr "Ne importáljon üres sorokat"
#: libraries/config/messages.inc.php:253
msgid "Import currencies ($5.00 to 5.00)"
-msgstr ""
+msgstr "Valuták importálása ($5.00-5.00)"
#: libraries/config/messages.inc.php:254
msgid "Import percentages as proper decimals (12.00% to .12)"
-msgstr ""
+msgstr "Százalékos értékek importálása pontos tizedestörtként"
#: libraries/config/messages.inc.php:255
-#, fuzzy
-#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start"
-msgstr "Az elejétől kihagyandó rekordok (lekérdezések) száma"
+msgstr "Az elejétől kihagyandó lekérdezések száma"
#: libraries/config/messages.inc.php:256
msgid "Partial import: skip queries"
msgstr "Részleges importálás: lekérdezések kihagyása"
#: libraries/config/messages.inc.php:258
-#, fuzzy
-#| msgid "Do not use AUTO_INCREMENT for zero values"
msgid "Do not use AUTO_INCREMENT for zero values"
-msgstr "Az AUTO_INCREMENT nulla értékekhez nincs használatban"
+msgstr "AUTO_INCREMENT-et ne használjon zéró értékekhez"
#: libraries/config/messages.inc.php:261
msgid "Initial state for sliders"
-msgstr ""
+msgstr "Csúszkák kezdeti állapota"
#: libraries/config/messages.inc.php:262
msgid "How many rows can be inserted at one time"
@@ -3392,10 +3225,8 @@ msgid "Display servers selection"
msgstr "A választható szerverek megjelenítése"
#: libraries/config/messages.inc.php:269
-#, fuzzy
-#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of tables to display the table filter box"
-msgstr "A táblalistában megjelenítendő táblák száma"
+msgstr "A filter-doboz megjelenítéséhez szükséges minimális táblák száma"
#: libraries/config/messages.inc.php:270
msgid "String that separates databases into different tree levels"
@@ -3439,7 +3270,7 @@ msgstr "Táblafa elválasztó"
#: libraries/config/messages.inc.php:279
msgid "URL where logo in the navigation frame will point to"
-msgstr ""
+msgstr "URL, ahová a navigációs keretben lévő logo fog mutatni"
#: libraries/config/messages.inc.php:280
msgid "Logo link URL"
@@ -3474,16 +3305,15 @@ msgid "Light tabs"
msgstr "Világos fülek"
#: libraries/config/messages.inc.php:287
-#, fuzzy
-#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-"Egy SQL-lekérdezés megjelenítésekor használt karakterek száma legfeljebb"
+"A mutatott karakterek maximális száma nem numerikus mező esetén a tallózás "
+"nézetben"
#: libraries/config/messages.inc.php:288
msgid "Limit column characters"
-msgstr ""
+msgstr "Mező-karakterek korlátozása"
#: libraries/config/messages.inc.php:289
msgid ""
@@ -3539,15 +3369,15 @@ msgstr "A bejelentkezési cookie érvényessége"
#: libraries/config/messages.inc.php:297
msgid "Double size of textarea for LONGTEXT columns"
-msgstr ""
+msgstr "A LONGTEXT mezők méretének duplára növelése"
#: libraries/config/messages.inc.php:298
msgid "Bigger textarea for LONGTEXT"
-msgstr ""
+msgstr "Nagyobb LONGTEXT szövegbeviteli mezők"
#: libraries/config/messages.inc.php:299
msgid "Use icons on main page"
-msgstr ""
+msgstr "Ikonok használata a főoldalon"
#: libraries/config/messages.inc.php:300
msgid "Maximum number of characters used when a SQL query is displayed"
@@ -3561,7 +3391,7 @@ msgstr "A SQL kijelzett hossza legfeljebb"
#: libraries/config/messages.inc.php:302 libraries/config/messages.inc.php:307
#: libraries/config/messages.inc.php:335
msgid "Users cannot set a higher value"
-msgstr ""
+msgstr "A felhasználók nem adhatnak meg nagyobb értéket"
#: libraries/config/messages.inc.php:303
msgid "Maximum number of databases displayed in left frame and database list"
@@ -3599,10 +3429,12 @@ msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
+"Alapértelmezett figyelmeztetés kikapcsolása, ha az mcrypt hiányzik a cookie "
+"hitelesítéshez"
#: libraries/config/messages.inc.php:311
msgid "mcrypt warning"
-msgstr ""
+msgstr "mcrypt figyelmeztetés"
#: libraries/config/messages.inc.php:312
msgid ""
@@ -3618,27 +3450,24 @@ msgstr "A memória korlátozása"
#: libraries/config/messages.inc.php:314
msgid "These are Edit, Inline edit, Copy and Delete links"
-msgstr ""
+msgstr "Ezek a Szerkesztés, Inline szerkesztés, Másolás és Törlés linkek"
#: libraries/config/messages.inc.php:315
-#, fuzzy
-#| msgid "Show logo in left frame"
msgid "Show table row links on left side"
-msgstr "A logo megjelenítése a bal oldali keretben"
+msgstr "A sorhoz tartozó linkek mutatása a bal oldalon"
#: libraries/config/messages.inc.php:316
msgid "Show table row links on right side"
-msgstr ""
+msgstr "A sorhoz tartozó linkek mutatása a jobb oldalon"
#: libraries/config/messages.inc.php:317
msgid "Use natural order for sorting table and database names"
msgstr ""
+"Használjon természetes rendezést a tábla, és adatbázis nevek sorrendjéhez"
#: libraries/config/messages.inc.php:318
-#, fuzzy
-#| msgid "Alter table order by"
msgid "Natural order"
-msgstr "Tábla rendezésének módosítása e szerint:"
+msgstr "Természetes rendezés"
#: libraries/config/messages.inc.php:319 libraries/config/messages.inc.php:329
msgid "Use only icons, only text or both"
@@ -3658,10 +3487,6 @@ msgid "GZip output buffering"
msgstr "GZip-kimenet pufferelése"
#: libraries/config/messages.inc.php:323
-#, fuzzy
-#| msgid ""
-#| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
-#| "DATETIME and TIMESTAMP, ascending order otherwise"
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -3687,32 +3512,28 @@ msgid ""
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
+"Letiltja az alapértelmezett figyelmeztetést az adatbázis részleteinél, ha a "
+"phpMyAdmin konfigurációs tárolóhoz tartozó adatbázistáblák közül valamelyik "
+"nem található"
#: libraries/config/messages.inc.php:328
+#, fuzzy
msgid "Missing phpMyAdmin configuration storage tables"
-msgstr ""
+msgstr "Hiányzó táblák a phpMyAdmin konfigurációs tárolóhoz"
#: libraries/config/messages.inc.php:330
msgid "Iconic table operations"
msgstr "Ikonos táblaműveletek"
#: libraries/config/messages.inc.php:331
-#, fuzzy
-#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "A BLOB vagy a BLOB és BINARY mezők módosításának tiltása"
#: libraries/config/messages.inc.php:332
-#, fuzzy
-#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "A bináris mezők védelme"
#: libraries/config/messages.inc.php:333
-#, fuzzy
-#| msgid ""
-#| "Enable if you want DB-based query history (requires pmadb). If disabled, "
-#| "this utilizes JS-routines to display query history (lost by window close)."
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -3744,25 +3565,19 @@ msgstr "Alapértelmezett lekérdezési ablak fül"
#: libraries/config/messages.inc.php:340
msgid "Query window height (in pixels)"
-msgstr ""
+msgstr "Lekérdezési ablak magassága (pixelekben)"
#: libraries/config/messages.inc.php:341
-#, fuzzy
-#| msgid "Query window"
msgid "Query window height"
-msgstr "Lekérdezés ablak"
+msgstr "Lekérdezés ablak magassága"
#: libraries/config/messages.inc.php:342
-#, fuzzy
-#| msgid "Query window"
msgid "Query window width (in pixels)"
-msgstr "Lekérdezés ablak"
+msgstr "Lekérdezés ablak szélessége (pixelekben)"
#: libraries/config/messages.inc.php:343
-#, fuzzy
-#| msgid "Query window"
msgid "Query window width"
-msgstr "Lekérdezés ablak"
+msgstr "Lekérdezés ablak szélessége"
#: libraries/config/messages.inc.php:344
msgid "Select which functions will be used for character set conversion"
@@ -3775,20 +3590,20 @@ msgstr "Átkódoló motor"
#: libraries/config/messages.inc.php:346
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
+"Megismétli a fejléceket minden X cellánként, a [kbd]0[/kbd] kikapcsolja ezt "
+"a lehetőséget"
#: libraries/config/messages.inc.php:347
-#, fuzzy
-#| msgid "Repair threads"
msgid "Repeat headers"
-msgstr "Szálak kijavítása"
+msgstr "Fejlécek kijavítása"
#: libraries/config/messages.inc.php:348
msgid "Show help button instead of Documentation text"
-msgstr ""
+msgstr "Mutassa a Segítség gombot a Dokumentáció szöveg helyett"
#: libraries/config/messages.inc.php:349
msgid "Show help button"
-msgstr ""
+msgstr "Segítség gomb mutatása"
#: libraries/config/messages.inc.php:351
msgid "Directory where exports can be saved on server"
@@ -3803,8 +3618,6 @@ msgid "Leave blank if not used"
msgstr "Hagyja üresen, ha nem használja"
#: libraries/config/messages.inc.php:354
-#, fuzzy
-#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Az állomás hitelesítési sorrendje"
@@ -3813,8 +3626,6 @@ msgid "Leave blank for defaults"
msgstr "Hagyja üresen az alapértelmezésekhez"
#: libraries/config/messages.inc.php:356
-#, fuzzy
-#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Az állomás hitelesítési szabályai"
@@ -3828,11 +3639,11 @@ msgstr "A root bejelentkezés engedélyezése"
#: libraries/config/messages.inc.php:359
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
-msgstr ""
+msgstr "HTTP Basic Auth Realm neve, ami HTTP hitelesítés közben jelenik meg"
#: libraries/config/messages.inc.php:360
msgid "HTTP Realm"
-msgstr ""
+msgstr "HTTP Realm"
#: libraries/config/messages.inc.php:361
msgid ""
@@ -3852,7 +3663,7 @@ msgstr "SweKey konfigurációs fájl"
msgid "Authentication method to use"
msgstr "Használandó hitelesítési módszer"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Hitelesítés típusa"
@@ -3997,10 +3808,6 @@ msgid "Connect without password"
msgstr "Jelszó nélküli csatlakozás"
#: libraries/config/messages.inc.php:393
-#, fuzzy
-#| msgid ""
-#| "You can use MySQL wildcard characters (% and _), escape them if you want "
-#| "to use their literal instances, i.e. use 'my\\_db' and not 'my_db'"
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -4010,7 +3817,9 @@ msgid ""
msgstr ""
"Használhatja a MySQL-karakterhelyettesítőket (% és _), vezérelheti őket, ha "
"akarja, a literális példányaik használatához, pl. használja a 'my\\_db' "
-"alakot, s ne a 'my_db' alakot"
+"alakot, s ne a 'my_db' alakot. Ezt a lehetőséget választva rendezhet "
+"adatbázislistákat, beírva a nevüket sorrendben és használja a [kbd]*[/kbd]-t "
+"a végén, hogy a többi abc-sorrendben jelenjen meg."
#: libraries/config/messages.inc.php:394
msgid "Show only listed databases"
@@ -4047,10 +3856,8 @@ msgstr ""
"[kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:400
-#, fuzzy
-#| msgid "database name"
msgid "Database name"
-msgstr "adatbázis neve"
+msgstr "Adatbázis neve"
#: libraries/config/messages.inc.php:401
msgid "Port on which MySQL server is listening, leave empty for default"
@@ -4108,9 +3915,8 @@ msgid "Server socket"
msgstr "A szerver szoftvercsatornája"
#: libraries/config/messages.inc.php:412
-#, fuzzy
msgid "Enable SSL for connection to MySQL server"
-msgstr "A MySQL-szerverhez csatlakozás tömörítése"
+msgstr "SSL engedélyezése a MySQL-szerverhez való csatlakozáshoz"
#: libraries/config/messages.inc.php:413
msgid "Use SSL"
@@ -4397,9 +4203,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Jelszó"
@@ -4419,8 +4225,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Felhasználónév:"
@@ -4547,7 +4353,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Részletes, több utasítás"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Új verzió ellenőrzése"
@@ -4713,7 +4519,7 @@ msgstr "Események"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Név"
@@ -4736,8 +4542,8 @@ msgid "Designer"
msgstr "Tervező"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Jogok"
@@ -4749,7 +4555,7 @@ msgstr "Eljárások"
msgid "Return type"
msgstr "Típus visszaadása"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4772,23 +4578,23 @@ msgstr ""
"(vagy nem megfelelően állították be a helyi MySQL szerver "
"szoftvercsatornáját)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Részletek..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Jelszó megváltoztatása"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Nincs jelszó"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Újraírás"
@@ -4812,7 +4618,7 @@ msgid "Create"
msgstr "Létrehozás"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nincs jog"
@@ -4945,8 +4751,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, "
"vagyis időformázó karakterláncokat használhat. A következő átalakításokra "
@@ -4969,7 +4775,7 @@ msgstr "Tömörítés"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Nincs"
@@ -5166,7 +4972,7 @@ msgstr "Kulcs szerinti rendezés"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Beállítások"
@@ -5205,65 +5011,65 @@ msgstr "BLOB-tartalom megjelenítése"
msgid "Browser transformation"
msgstr "Böngésző átalakítása"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "A sor törlése megtörtént"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Leállít"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "lekérdezésben"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Megjelenített sorok:"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "összesen"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "a lekérdezés %01.4f másodpercig tartott"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Módosítás"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Műveletek a lekérdezési eredménnyel"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Nyomtatási nézet (teljes szöveggel)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF séma megjelenítése"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Kapcsolat létrehozása"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Nem található a hivatkozás"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Verziószám"
@@ -5704,8 +5510,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5828,9 +5634,9 @@ msgstr "Létező MIME-típusok"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Hoszt"
@@ -5841,7 +5647,7 @@ msgid "Generation Time"
msgstr "Létrehozás ideje"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Szerver verzió"
@@ -6185,7 +5991,30 @@ msgstr "Nincs"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "P"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Indítás"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Nincs változás"
@@ -6493,8 +6322,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Felhasználónév"
@@ -6515,7 +6344,7 @@ msgstr "Változó"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Érték"
@@ -6533,34 +6362,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Bármilyen felhasználó"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Szöveges mező használata"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Bármilyen hoszt"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Helyi"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ez a hoszt"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Hoszt-tábla használata"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6628,7 +6457,7 @@ msgstr "Tulajdonságok"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6731,12 +6560,12 @@ msgid "Toggle scratchboard"
msgstr "Scratchboard kapcsolása"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ismeretlen nyelv: %1$s."
@@ -6816,7 +6645,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Törlés"
@@ -6852,10 +6681,6 @@ msgstr "Elválasztó"
msgid " Show this query here again "
msgstr " A fenti lekérdezés megjelenítése itt újra "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Indítás"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Csak megtekinthető"
@@ -6864,7 +6689,7 @@ msgstr "Csak megtekinthető"
msgid "Location of the text file"
msgstr "A szövegfájl helye"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "webszerver feltöltési könyvtár"
@@ -6916,19 +6741,19 @@ msgstr "Feldolgozatlan kezdete"
msgid "END RAW"
msgstr "Feldolgozatlan Vége"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Lezáratlan idézőjel"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Érvénytelen azonosító"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Ismeretlen írásjeleket tartalmazó karakterlánc"
@@ -6938,8 +6763,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
-"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
+"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
+"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"kiterjesztést."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
@@ -6983,7 +6808,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -7032,12 +6857,12 @@ msgid "As defined:"
msgstr "Mint meghatározva:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Elsődleges"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Teljes szöveg"
@@ -7051,7 +6876,7 @@ msgstr ""
"hogy mit csinál a(z) %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Tárolómotor"
@@ -7059,13 +6884,13 @@ msgstr "Tárolómotor"
msgid "PARTITION definition"
msgstr "PARTITION definíció"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s mező hozzáadása"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7298,84 +7123,84 @@ msgstr "Nem található fájl a ZIP archívumban!"
msgid "Error in ZIP archive:"
msgstr "Hiba a ZIP archívumban:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Általános relációs jellemzők"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL kapcsolat illesztése"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Egyéb alapbeállítások"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "Other core settings"
msgid "More settings"
msgstr "Egyéb alapbeállítások"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokoll verzió"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Felhasználó"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL karakterkészlet"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Webszerver"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL kliens verzió"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP-kiterjesztés"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP információ megjelenítése"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Hivatalos honlap"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Tulajdonságok"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Exportálás"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Nincs változás"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7387,7 +7212,7 @@ msgstr ""
"MySQL szerver most ezzel az alapbeállítással fut, behatolásra nyitott. "
"Javítsa ezt a biztonsági rést."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7396,7 +7221,7 @@ msgstr ""
"Ön engedélyezte az mbstring.func_overload funkciót a PHP konfigurációban. Ez "
"a beállítás nem kompatibilis a phpMyAdminnal, és az adatsérüléssel járhat!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7407,7 +7232,7 @@ msgstr ""
"tudja megfelelően felosztani a karakterláncokat, mely nem várt eredményhez "
"vezethet."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7419,7 +7244,7 @@ msgstr ""
"phpMyAdminban beállított cookie érvényességénél, Emiatt a bejelentkezése a "
"phpMyAdminban beállítottnál előbb fog lejárni."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7435,13 +7260,13 @@ msgstr ""
"phpMyAdminban beállított cookie érvényességénél, Emiatt a bejelentkezése a "
"phpMyAdminban beállítottnál előbb fog lejárni."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"A konfigurációs fájlnak egy titkos hozzáférési kódra (blowfish_secret) van "
"szüksége."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7450,7 +7275,7 @@ msgstr ""
"A parancsfájl által használt [code]config[/code] könyvtár még létezik a "
"phpMyAdmin könyvtárában. Távolítsa el a phpMyAdmin beállítása után."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7462,14 +7287,14 @@ msgstr ""
"A hivatkozott táblákkal történő munka kiegészítő funkciói inaktiválásra "
"kerültek. Ha szeretné megtudni, hogy miért, kattintson %side%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7478,7 +7303,7 @@ msgstr ""
"A PHP MySQL függvénytár %s-s verziója eltér a MySQL szerver %s-s "
"verziójától. Ez kiszámíthatatlan viselkedést okozhat."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7502,14 +7327,14 @@ msgstr "Fájlok"
msgid "filter tables by name"
msgstr "Tábla rendezésének módosítása e szerint:"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Tábla létrehozása"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Válasszon adatbázist"
@@ -7918,76 +7743,76 @@ msgid "Includes all privileges except GRANT."
msgstr "A GRANT kivételével minden jogot tartalmaz."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
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:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
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:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
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:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Engedélyezi tárolt eljárások létrehozását."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Engedélyezi új táblák készítését."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Engedélyezi ideiglenes táblák készítését."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
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:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Engedélyezi új nézetek létrehozását."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Engedélyezi az adatok törlését."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Engedélyezi az adatbázisok és táblák eldobását."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Engedélyezi a táblák eldobását."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
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:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Engedélyezi a tárolt eljárások végrehajtását."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7995,35 +7820,35 @@ msgstr ""
"hozzáadását."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Engedélyezi indexek készítését és törlését."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Engedélyezi az adatok beírását és megváltoztatását."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
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:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -8031,62 +7856,62 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nem valósult meg ebben a MySQL verzióban"
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "A kisegítő helyek másolásához szükséges."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Engedélyezi az adatok olvasását."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
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:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Engedélyezi a szerver leállítását."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -8098,12 +7923,12 @@ msgstr ""
"megszüntetése."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
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:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Engedélyezi az adatok megváltoztatását."
@@ -8118,237 +7943,237 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nincs"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Táblaspecifikus jogok"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Megjegyzés: a MySQL jognevek az angolból származnak."
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globális jogok"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Adatbázis-specifikus jogok"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Adminisztráció"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globális jogok"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Adatbázis-specifikus jogok"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Erőforrás-korlátozások"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Bejelentkezési adatok"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nincs jelszó megváltoztatás"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nem található(k) a felhasználó(k)."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "%s felhasználó már létezik!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Az új felhasználó hozzáadása megtörtént."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ön frissítette %s jogait."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s jogainak visszavonása megtörtént"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s jelszavának megváltoztatása sikerült."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s törlése"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Nincs törlésre kijelölt felhasználó!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "A jogok újratöltése"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "A kiválasztott felhasználók törlése sikerült."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "A jogok újratöltése sikerült."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Jogok szerkesztése"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Visszavonás"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Bármi"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Felhasználók áttekintése"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Engedélyezés"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Új felhasználó hozzáadása"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "A kijelölt felhasználók törlése"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Oszlopspecifikus jogok"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Jogok hozzáadása a következő adatbázison"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Jogok hozzáadása a következő táblán:"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... a régiek megőrzése."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
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:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Adatbázis a felhasználó számára"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nincs"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globális"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "adatbázis-specifikus"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "karakterhelyettesítő"
@@ -9499,7 +9324,7 @@ msgstr "Munkamenet értéke"
msgid "Global value"
msgstr "Globális változó"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Letöltés"
@@ -9545,55 +9370,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Veszélyes kapcsolat"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Konfigurációs tároló"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Áttekintés"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "A rejtett üzenetek megjelenítése (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Nincsenek konfigurált szerverek"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Új szerver"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Alapértelmezett nyelv"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "válassza ki a felhasználó"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- nincs -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Alapértelmezett szerver"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Sorvége"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Nézet"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Betöltés"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin honlap"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Adományozás"
@@ -9799,9 +9636,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9919,65 +9756,65 @@ msgstr "A(z) %1$s tábla módosítása sikerült"
msgid "Function"
msgstr "Függvény"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr "A hossza miatt
lehet, hogy ez a mező nem szerkeszthető "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "A BLOB-raktár hivatkozásának eltávolítása"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Bináris - nem szerkeszthető"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Feltöltés a BLOB-raktárba"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Beszúrás új sorként"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Megjelenítés SQL lekérdezésként"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "és utána"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Vissza az előző oldalra"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Új sor beszúrása"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Visszatérés erre az oldalra"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Következő sor szerkesztése"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová "
"léphet."
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -10142,7 +9979,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Hozzáadás az index %s oszlophoz"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Az oszlopok számának nullánál nagyobbnak kell lennie."
@@ -10168,102 +10005,102 @@ msgstr "A(z) %s tábla másolása %s néven megtörtént."
msgid "The table name is empty!"
msgstr "Üres a tábla neve!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Tábla rendezésének módosítása e szerint:"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(egyenként)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Tábla áthelyezése (adatbázis.tábla):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tábla beállításai"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Tábla átnevezése"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Tábla másolása (adatbázis.tábla):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "A másolt táblára váltás"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tábla karbantartása"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Tábla töredezettségmentesítése"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "A(z) %s tábla kiírása megtörtént"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Tábla kiírása (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "A tábla adatainak kiíratása"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Nincs adatbázis"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Partíció karbantartása"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "%s partíció"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Elemzés"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Ellenőrzés"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimalizálás"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Újraépítés"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Javítás"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Particionálás eltávolítása"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Hivatkozási sértetlenség ellenőrzése:"
@@ -10271,39 +10108,39 @@ msgstr "Hivatkozási sértetlenség ellenőrzése:"
msgid "Show tables"
msgstr "A táblák megjelenítése"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Területhasználat"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Méret"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Hatályos"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Sorstatisztika"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Utasítások"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statikus"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamikus"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Sor hossza"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Sor mérete "
@@ -10393,57 +10230,57 @@ msgstr "Nincs"
msgid "Column %s has been dropped"
msgstr "A(z) %s tábla eldobása megtörtént"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Az elsődleges kulcs hozzáadása a(z) %s mezőn megtörtént"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Az index hozzáadása a(z) %s mezőn megtörtént"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Verziók megjelenítése"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Kapcsolat nézete"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Táblaszerkezet ajánlása"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "%s mező hozzáadása"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "A tábla végén"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "A tábla elején"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s után"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Index készítése a(z) %s. oszlopon"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "particionált"
@@ -10471,108 +10308,134 @@ msgstr ""
msgid "SQL statements executed."
msgstr "SQL kifejezés végrehajtva."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Hibák összegyűjtése"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Tábla nyomkövetési adatainak törlése."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Nincs adatbázis"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Adatok"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL végrehajtás"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exportálás: %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Verziók megjelenítése"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Verzió"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Inaktiválás"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Aktiválás"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Verzió létrehozása"
diff --git a/po/id.po b/po/id.po
index c9e27e1002..71088c428b 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \n"
-"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Tampilkan semua"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Cari"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Cari"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Go"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nama Kunci"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s telah dibuat."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar Database: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentar tabel"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Komentar tabel"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolom"
@@ -149,11 +149,11 @@ msgstr "Kolom"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Jenis"
@@ -163,8 +163,8 @@ msgstr "Jenis"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Kosong"
@@ -174,7 +174,7 @@ msgstr "Kosong"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Default"
@@ -197,39 +197,40 @@ msgstr "Link ke"
msgid "Comments"
msgstr "Komentar"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ya"
@@ -241,8 +242,8 @@ msgstr "Cetak"
msgid "View dump (schema) of database"
msgstr "Tampilkan dump (skema) dari database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Tidak ada tabel dalam database."
@@ -268,78 +269,78 @@ msgstr "Nama database %s telah diubah menjadi %s"
msgid "Database %s has been copied to %s"
msgstr "Database %s telah disalin ke %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ubah nama database menjadi"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Perintah"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Hapus database"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s telah dihapus."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Buang database (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Salin database ke"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Struktur saja"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur dan data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Data saja"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CIPTAKAN DATABASE sebelum menyalin"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Tambah %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Menambahkan nilai AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Menambahkan pembatas"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pindah ke database yang disalin"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Penyortiran"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"Penyimpanan konfigurasi phpMyAdmin telah dinonaktifkan. Untuk mencari tahu "
"mengapa klik %sdisini%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edit atau ekspor skema relasional"
@@ -356,17 +357,17 @@ msgstr "Edit atau ekspor skema relasional"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabel"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Baris"
@@ -382,21 +383,21 @@ msgstr "sedang digunakan"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Pembuatan"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Update terakhir"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Pemeriksaan terakhir"
@@ -406,97 +407,90 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tabel"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Query SQL Anda berhasil dieksekusi"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Sekurang-kurangnya satu kolom harus dipilih untuk ditampilkan"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Beralih ke"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "pembangun visual"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Urutkan"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Urutan menaik"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Urutan menurun"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Tampilkan"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Sisipkan"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Dan"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Hapus"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Atau"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Ubah"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Tambahkan/Hapus kriteria baris"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Tambahkan/Hapus kolom"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Update proses pencarian"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Gunakan Tabel"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Pencarian SQL dalam database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Jalankan Pencarian SQL"
@@ -536,7 +530,7 @@ msgstr[0] "%s cocok dalam tabel %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Browse"
@@ -545,14 +539,15 @@ msgstr "Browse"
msgid "Delete the matches for the %s table?"
msgstr "Hapus yang cocok untuk% s tabel?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Hapus"
@@ -590,17 +585,17 @@ msgstr "Di dalam kolom:"
msgid "No tables found in database"
msgstr "Tidak ada tabel dalam database."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s telah dikosongkan"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Pandangan %s telah dibubarkan"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s telah dihapus"
@@ -613,14 +608,14 @@ msgstr "Pelacakan aktif"
msgid "Tracking is not active."
msgstr "Pelacakan tidak aktif."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat "
-"%sdokumentasi%s"
+"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %"
+"sdokumentasi%s"
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -643,22 +638,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s adalah mesin penyimpan utama pada server MySQL ini."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "yang ditandai:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Pilih semua"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Balik pilihan"
@@ -667,16 +662,16 @@ msgid "Check tables having overhead"
msgstr "Periksa Overheaded"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Ekspor"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Pandangan cetak"
@@ -688,28 +683,44 @@ msgstr "Mengosongkan"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Hapus"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Periksa tabel"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimasikan tabel"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Perbaiki tabel"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analisa tabel"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Ganti data tabel dengan file"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Ganti data tabel dengan file"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Kamus Data"
@@ -723,10 +734,10 @@ msgstr "Tabel-tabel yang dilacak"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Database"
@@ -734,36 +745,36 @@ msgstr "Database"
msgid "Last version"
msgstr "Versi terakhir"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Dibuat"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Diperbarui"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Aksi"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Hapus pelacakan data untuk tabel ini"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktif"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "tidak aktif"
@@ -771,11 +782,11 @@ msgstr "tidak aktif"
msgid "Versions"
msgstr "Versi"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Laporan pelacakan"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Struktur snapshot"
@@ -783,8 +794,8 @@ msgstr "Struktur snapshot"
msgid "Untracked tables"
msgstr "Batal lacak tabel"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Lacak tabel"
@@ -843,11 +854,11 @@ msgstr "Dump (Skema) disimpan pada file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat "
-"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
+"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
+"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -914,6 +925,13 @@ msgstr ""
"phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas "
"waktu eksekusi php."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Query SQL Anda berhasil dieksekusi"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -940,224 +958,242 @@ msgstr "Klik untuk batal memilih"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Perintah \"HAPUS DATABASE\" dimatikan."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Apakah anda ingin "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Anda akan MENGHAPUS SELURUH database!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Anda akan MENGHAPUS SELURUH database!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Anda akan MENGHAPUS SELURUH database!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Menghapus Event"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Menghapus Procedure"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Hapus data pelacakan"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Menghapus Primary Key/Index"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Aktifitas ini membutuhkan waktu yang lama. Tetap melanjutkan?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Anda akan MENONAKTIFKAN repositori BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Apakah Anda yakin ingin menonaktifkan semua referensi BLOB untuk database %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Data dalam form kurang !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ini bukan angka!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Nama Host harus diisi!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Nama pengguna masih kosong!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Kata Sandi kosong!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Kata Sandi tidak sama!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Menambahkan pengguna baru"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Membuat Pengguna"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Reload Hak Istimewa (Privileges)"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Hapus pengguna yang dipilih"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Tutup"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Batal"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Memproses"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Memproses permintaan"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Error dalam memproses permintaan"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Menghapus Kolom"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr " Tambahkan Primary Key"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Oke"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Ubah nama database"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Muat ulang basis data"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Salin database"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Perangkat karakter (Charset)"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tabel harus mengandung sekurangnya satu kolom"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Buat tabel"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Pencarian"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Sembunyikan kotak query"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Tampilkan kotak query"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Inline Edit"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Simpan"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Sembunyikan"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Sembunyikan kriteria pencarian"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Tampilkan kriteria pencarian"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Abaikan"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Pilih kunci rujukan"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Pilih Foreign Key"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Silakan pilih primary key atau sebuah unique key"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pilih kolom untuk ditampilkan"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Tambahkan pilihan untuk kolom"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Menghasilkan kata sandi"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Menghasilkan"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Ubah Kata Sandi"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Selebihnya"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1167,254 +1203,260 @@ msgstr ""
"untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", versi stabil terakhir:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Beralih ke database"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Selesai"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Sebelumnya"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Berikutnya"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Hari ini"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Januari"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Februari"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Maret"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "April"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mei"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Juni"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Juli"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Agustus"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "September"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Oktober"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "November"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Januari"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Februari"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Maret"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "April"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Agustus"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "September"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nopember"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Desember"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Minggu"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Senin"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Selasa"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Rabu"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Kamis"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Jumat"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Sabtu"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Minggu"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Senin"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Selasa"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Rabu"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Kamis"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Jumat"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sabtu"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Minggu"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Senin"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Selasa"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Rabu"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Kamis"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Jumat"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Sabtu"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Mingguan"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Jam"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Menit"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Detik"
@@ -1467,33 +1509,33 @@ msgid "No index defined!"
msgstr "Indeks belum ditentukan!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeks"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unik"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Bilangan Pokok"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Komentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
@@ -1517,20 +1559,20 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Basisdata"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Error"
# No difference between singular and plural in this case for Indonesian
# language.
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -1538,7 +1580,7 @@ msgstr[0] "%1$d baris terpengaruh."
# No difference between singular and plural in this case for Indonesian
# language.
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -1546,7 +1588,7 @@ msgstr[0] "%1$d baris telah dihapus."
# No difference between singular and plural in this case for Indonesian
# language.
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1638,8 +1680,8 @@ msgstr "Selamat Datang di %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup "
"script%2$s untuk membuatnya."
@@ -1791,19 +1833,19 @@ msgstr "Tabel"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Jumlah"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Kelebihan (Overhead)"
@@ -1892,16 +1934,16 @@ msgstr ""
"Hostname tidak sah untuk server %1$s. Silakan lihat kembali konfigurasi Anda."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Metode autentikasi dalam konfigurasi tidak sah:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru."
@@ -1936,7 +1978,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentasi"
@@ -2084,7 +2126,7 @@ msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktur"
@@ -2118,7 +2160,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Pilih dari direktori unggah %s pada web server:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi"
@@ -2278,7 +2320,7 @@ msgstr "Izinkan pengguna untuk mengubah nilai ini"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Reset"
@@ -2394,7 +2436,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2524,7 +2566,7 @@ msgid "Character set of the file"
msgstr "Penyusunan karakter dalam file:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2853,7 +2895,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Server"
@@ -3598,7 +3640,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4067,9 +4109,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Kata Sandi"
@@ -4089,8 +4131,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Nama Pengguna"
@@ -4205,7 +4247,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4354,7 +4396,7 @@ msgstr "Kejadian"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nama"
@@ -4377,8 +4419,8 @@ msgid "Designer"
msgstr "Perancang"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Hak Akses"
@@ -4390,7 +4432,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4412,23 +4454,23 @@ msgstr "Server tidak menjawab"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(atau konfigurasi socket dari server MySQL tidak benar)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Rincian..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Ubah Kata Sandi"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Kata Sandi belum ditetapkan"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ketik ulang"
@@ -4452,7 +4494,7 @@ msgid "Create"
msgstr "Ciptakan"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Tidak ada Hak Akses (privilege)"
@@ -4579,8 +4621,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4600,7 +4642,7 @@ msgstr "Kompresi"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "tanpa"
@@ -4781,7 +4823,7 @@ msgstr "Urut berdasarkan kunci"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Operasi"
@@ -4822,66 +4864,66 @@ msgstr ""
msgid "Browser transformation"
msgstr "Transformasi Browser"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Baris telah dihapus"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Tutup"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "dalam susunan pemeriksaan"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Tampilan baris"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "pencarian membutuhkan waktu %01.4f detik"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ubah"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Pandangan cetak (dengan teks lengkap)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Tampilkan skema PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Membuat versi"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link tidak ditemukan"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informasi tentang versi"
@@ -5285,8 +5327,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5410,9 +5452,9 @@ msgstr "Tipe MIME yang tersedia"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5423,7 +5465,7 @@ msgid "Generation Time"
msgstr "Waktu pembuatan"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versi Server"
@@ -5770,7 +5812,30 @@ msgstr "tanpa"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Jumat"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Kirim"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Tidak ada perubahan"
@@ -6076,8 +6141,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nama pengguna"
@@ -6098,7 +6163,7 @@ msgstr "Variabel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Nilai"
@@ -6116,34 +6181,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Setiap pengguna"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Gunakan text field"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Setiap host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Host yang ini"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Gunakan Host Table"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6207,7 +6272,7 @@ msgstr "Atribut"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstra"
@@ -6310,12 +6375,12 @@ msgid "Toggle scratchboard"
msgstr "pindah buku catatan (Scratchboard)"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6392,7 +6457,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Melaksanakan perintah SQL pada database %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Kalender"
@@ -6427,10 +6492,6 @@ msgstr "Pembatas"
msgid " Show this query here again "
msgstr " Tampilkan ulang perintah SQL "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Kirim"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Hanya melihat"
@@ -6439,7 +6500,7 @@ msgstr "Hanya melihat"
msgid "Location of the text file"
msgstr "dari File"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "direktori upload pada web-server"
@@ -6492,19 +6553,19 @@ msgstr "MULAI mentah (RAW)"
msgid "END RAW"
msgstr "AKHIRI mentah (RAW)"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Tanda kutip tidak ditutup"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identifer tidak valid"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Punctation String tidak dikenali"
@@ -6558,7 +6619,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6607,12 +6668,12 @@ msgid "As defined:"
msgstr "Seperti yang didefinisikan"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Kunci Utama"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Teks penuh"
@@ -6626,7 +6687,7 @@ msgstr ""
"penulis tentang artinya %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Mesin Penyimpan"
@@ -6634,13 +6695,13 @@ msgstr "Mesin Penyimpan"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Menambahkan %s field(s)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6849,82 +6910,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr "Kesalahan dalam arsip ZIP:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Ciri-ciri dari General Relation"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Penyortiran koneksi MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Ciri-ciri dari General Relation"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Pengguna"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Charset MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Server web"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "Versi PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Tampilkan informasi PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Homepage resmi phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atribut"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Tidak ada perubahan"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6937,7 +6998,7 @@ msgstr ""
"penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) "
"ini."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6946,7 +7007,7 @@ msgstr ""
"Fungsi mbstring.func_overload aktif pada konfigurasi PHP Anda. Pilihan ini "
"tidak cocok dengan phpMyAdmin dan mampu merusak sebagian data!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6957,7 +7018,7 @@ msgstr ""
"baris-baris dengan cara yang benar. Hal ini mampu mengakibatkan hasil yang "
"tidak diinginkan."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6965,18 +7026,18 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"File konfigurasi membutuhkan susunan kata-kata rahasia (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -6986,7 +7047,7 @@ msgstr ""
"di direktori phpMyAdmin Anda. Anda harus menghapus nya setelah phpMyAdmin di "
"konfigurasi."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6998,21 +7059,21 @@ msgstr ""
"Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. "
"Untuk mengetahui sebabnya silakan klik %sdisini%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7033,14 +7094,14 @@ msgstr ""
msgid "filter tables by name"
msgstr "Urutkan tabel berdasarkan"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Buat tabel"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Silakan pilih database"
@@ -7435,75 +7496,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Mengizinkan untuk menciptakan database dan tabel baru."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Mengizinkan penciptaan Routines yang akan disimpan."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Mengizinkan untuk menciptakan tabel baru."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Mengizinkan untuk menciptakan pandangan baru."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Mengizinkan untuk hapus data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Mengizinkan untuk hapus database dan tabel."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Mengizinkan untuk hapus tabel."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Mengizinkan eksekusi Routines yang tersimpan."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7511,36 +7572,36 @@ msgstr ""
"harus me-reload ulang tabel Hak Istimewa."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Mengizinkan untuk menciptakan dan hapus Indeks."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Mengizinkan untuk tambah dan ganti data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
"Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap "
"pengguna dalam batas waktu satu jam."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7548,8 +7609,8 @@ msgstr ""
"Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk "
"setiap pengguna dalam batas waktu satu jam."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, fuzzy
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
@@ -7557,55 +7618,55 @@ msgstr ""
"batas waktu satu jam."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Tidak ada efek dalam versi MySQL yang digunakan."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Mengizinkan untuk reload stelan dari server dan untuk flush cache dari "
"server."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Digunakan untuk replikasi dari slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Mengizinkan untuk baca data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Memberi akses ke seluruh daftar database."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Mengizinkan untuk shut-down server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7616,13 +7677,13 @@ msgstr ""
"global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Mengizinkan untuk menciptakan dan hapus Indeks."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Mengizinkan untuk ubah data."
@@ -7637,146 +7698,146 @@ msgctxt "None privileges"
msgid "None"
msgstr "tanpa"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Hak (privileges) khusus terhadap tabel"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Catatan: Nama privilege MySQL dalam bahasa Ingris "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Hak Istimewa (Privileges) Global"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Hak (privileges) khusus terhadap Database"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administrasi"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Hak Istimewa (Privileges) Global"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Hak (privileges) khusus terhadap Database"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Batas dari sumber"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Informasi Login"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Jangan ubah Kata Sandi"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Pengguna tidak ditemukan."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Pengguna %s telah terdaftar!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Pengguna baru telah ditambahkan."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Hak Akses (privilege) untuk %s telah di-update."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Hak akses untuk %s telah dicabut"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Sukses mengubah Kata Sandi untuk %s ."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Menghapus %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Tidak ada pengguna yang dipilih untuk dihapus!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Reload Hak Istimewa (Privileges)"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Sukses menghapus Pengguna yang dipilih."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Sukses reload Hak Istimewa (Privileges)."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Ubah hak akses (privilege)"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Cabut"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Setiap"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Pandangan Umum Pengguna"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Izin"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Menambahkan pengguna baru"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Hapus pengguna yang dipilih"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Cabut seluruh Hak Istimewa (Privileges) dari pengguna, lantas hapus pengguna "
"tsb. dari daftar tabel pengguna."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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 "
@@ -7784,94 +7845,94 @@ msgstr ""
"diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum "
"melanjut."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
"Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table)."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Hak (privileges) khusus terhadap kolum"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Menambahkan hak (privileges) pada database berikut"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Menambahkan hak (privileges) pada tabel berikut"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Ubah informasi Login / Salip pengguna"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Ciptakan pengguna baru dengan hak-hak yang sama dan ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... mempertahankan yang lama."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... hapus yang lama dari User Table."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... hapuskan yang lama dari User Table, kemudian reload hak-hak."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Database untuk pengguna"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "tanpa"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Buat database dengan nama yang sama dan beri semua hak"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Berikan semua hak untuk database "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Pengguna memiliki akses ke "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "database-spesifik"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "wildcard"
@@ -8895,7 +8956,7 @@ msgstr "Nilai dari Session"
msgid "Global value"
msgstr "Nilai Global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8927,57 +8988,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Modifikasi telah disimpan"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokal"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Dokumentasi phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9204,65 +9277,65 @@ msgstr "Sukses menghapus Pengguna yang dipilih."
msgid "Function"
msgstr "Fungsi"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr ""
" Disebabkan ukuran panjangnya,
field ini tidak dapat di-edit ulang. "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Hapus Referensi Repositori BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binari - jangan di-edit"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Upload ke repositori BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Sisipkan sebagai baris baru"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "selanjutnya"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "kembali"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "sisipkan baris baru berikutnya"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Kembali ke halaman ini"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Edit baris berikut"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah "
"untuk maju kemana saja"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9426,7 +9499,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Menambahkan ke indeks %s kolom"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Perhitungan kolom wajib lebih besar dari nol."
@@ -9452,103 +9525,103 @@ msgstr "Tabel %s telah disalin ke %s."
msgid "The table name is empty!"
msgstr "Nama tabel kosong!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Urutkan tabel berdasarkan"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(unik)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Pindahkan tabel ke (database.tabel):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Pilihan untuk tabel"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Ubah nama tabel menjadi "
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Salin tabel ke (database.nama tabel):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Pindah ke tabel salinan"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Pemeliharaan tabel"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentasikan tabel"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabel %s telah dibuang"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Tutup tabel (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Hapus pelacakan data untuk tabel ini"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Database tidak ditemukan"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Pemeliharaan tabel"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analisa"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Tandai"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Perbaiki"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Cek integriti referensial:"
@@ -9556,39 +9629,39 @@ msgstr "Cek integriti referensial:"
msgid "Show tables"
msgstr "Tampilkan tabel"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Penggunaan tempat"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Penggunaan"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektif"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistik Baris"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Keterangan"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamis"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Panjangnya baris"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Besarnya baris "
@@ -9673,55 +9746,55 @@ msgstr "tanpa"
msgid "Column %s has been dropped"
msgstr "Tabel %s telah dihapus"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Primary key telah ditambahkan pada %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Indeks telah ditambahkan pada %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Tampilkan informasi PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Tampilan relasi"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Menganalisa struktur tabel"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Tambah kolom"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Pada Akhir Tabel"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Pada Awal Tabel"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "sisipkan setelah %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Ciptakan indeks pada kolom %s "
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9749,7 +9822,7 @@ msgstr "Pelacakan untuk %s.%s , versi %s diaktifkan."
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9757,101 +9830,131 @@ msgstr ""
"Anda dapat mengeksekusi dump dengan membuat dan menggunakan database "
"sementara. Mohon pastikan Anda mempunyai hak untuk melakukannya."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Versi %s snapshot (kode SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Lacak definisi data dari pernyataan berikut:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Tipe Pencarian"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Lacak manipulasi data dari pernyataan berikut:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Hapus pelacakan data untuk tabel ini"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Database tidak ditemukan"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Tanggal"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Pernyataan definisi data"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Penyataan manipulasi data"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Ekspor sebagai %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versi"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Nonaktifkan pelacakan untuk %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Nonaktifkan sekarang"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Aktifkan pelacakan untuk %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Aktifkan sekarang"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Membuat versi %s dari %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Lacak definisi data dari pernyataan berikut:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Lacak manipulasi data dari pernyataan berikut:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Membuat versi"
diff --git a/po/it.po b/po/it.po
index 3162d629f5..0b9eaf9a15 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-05 14:27+0200\n"
"Last-Translator: \n"
"Language-Team: italian \n"
-"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Mostra tutti"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Cerca"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Cerca"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Esegui"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Chiave"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Il database %1$s è stato creato."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Commento del database: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Commenti alla tabella"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Commenti alla tabella"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Campo"
@@ -150,11 +150,11 @@ msgstr "Campo"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -164,8 +164,8 @@ msgstr "Tipo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -175,7 +175,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Predefinito"
@@ -198,39 +198,40 @@ msgstr "Collegamenti a"
msgid "Comments"
msgstr "Commenti"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "No"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Sì"
@@ -242,8 +243,8 @@ msgstr "Stampa"
msgid "View dump (schema) of database"
msgstr "Visualizza dump (schema) del database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Non ci sono tabelle nel database."
@@ -269,78 +270,78 @@ msgstr "Il database %s è stato rinominato a %s"
msgid "Database %s has been copied to %s"
msgstr "Il database %s è stato copiato a %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Rinomina il database a"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Comando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Rimuovi il database"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Il database %s è stato eliminato."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Cancella il database (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copia il database a"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Solo struttura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struttura e dati"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Solo dati"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE prima di copiare"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Aggiungi %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Aggiungi valore AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Aggiungi vincoli"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Passa al database copiato"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -349,7 +350,7 @@ msgstr ""
"Le opzioni di configurazione dello storage di phpMyAdmin sono state "
"disabilitate. Per scoprire la ragione, clicca %squi%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Modifica o esporta schema relazionale"
@@ -357,17 +358,17 @@ msgstr "Modifica o esporta schema relazionale"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabella"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Righe"
@@ -383,21 +384,21 @@ msgstr "in uso"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Creazione"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Ultimo cambiamento"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Ultimo controllo"
@@ -408,97 +409,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabella"
msgstr[1] "%s tabelle"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "La query SQL è stata eseguita con successo"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Devi scegliere almeno un campo da mostrare"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Passa a"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "creazione query assistita"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Ordinamento"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Crescente"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Decrescente"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostra"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criterio"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Aggiungi"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "E"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Elimina"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Oppure"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modifica"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Aggiungi/Cancella criterio di riga"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Aggiungi/Cancella colonne"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Aggiorna Query"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Utilizza tabelle"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-query sul database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Invia Query"
@@ -539,7 +533,7 @@ msgstr[1] "%s corrispondenze nella tabella %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Mostra"
@@ -548,14 +542,15 @@ msgstr "Mostra"
msgid "Delete the matches for the %s table?"
msgstr "Eliminare le corrispondenze relative alla tabella %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Elimina"
@@ -594,17 +589,17 @@ msgstr "All'interno della colonna:"
msgid "No tables found in database"
msgstr "Non ci sono tabelle nel database"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "La tabella %s è stata svuotata"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "La vista %s è stata eliminata"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "La tabella %s è stata eliminata"
@@ -617,11 +612,11 @@ msgstr "Il tracking è attivo."
msgid "Tracking is not active."
msgstr "Il tracking non è attivo."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Questa vista ha, come minimo, questo numero di righe. Per informazioni "
"controlla la %sdocumentazione%s."
@@ -647,22 +642,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Se selezionati:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Seleziona tutti"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Deseleziona tutti"
@@ -671,16 +666,16 @@ msgid "Check tables having overhead"
msgstr "Controllo addizionale"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Esporta"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Visualizza per stampa"
@@ -692,28 +687,46 @@ msgstr "Svuota"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Controlla tabella"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Ottimizza tabella"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Ripara tabella"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizza tabella"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Vai alla tabella"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Sostituisci i dati della tabella col file"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Sostituisci i dati della tabella col file"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Dictionary"
@@ -727,10 +740,10 @@ msgstr "Tabelle monitorate"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Database"
@@ -738,36 +751,36 @@ msgstr "Database"
msgid "Last version"
msgstr "Ultima versione"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Creato"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Aggiornato"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Stato"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Azione"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Cancella dati di tracciamento per questa tabella"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "attivo"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "non attivo"
@@ -775,11 +788,11 @@ msgstr "non attivo"
msgid "Versions"
msgstr "Versioni"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Rapporto tracking"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Snapshot della struttura"
@@ -787,8 +800,8 @@ msgstr "Snapshot della struttura"
msgid "Untracked tables"
msgstr "Tabelle non monitorate"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Controlla tabella"
@@ -848,8 +861,8 @@ msgstr "Il dump è stato salvato nel file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Stai probabilmente cercando di caricare sul server un file troppo grande. "
"Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare "
@@ -924,6 +937,13 @@ msgstr ""
"evidenzia che il limite di tempo impostato nella configurazione è troppo "
"basso per consentire a phpMyAdmin di terminare l'operazione."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "La query SQL è stata eseguita con successo"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -948,224 +968,242 @@ msgstr "Clicca per deselezionare"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "I comandi \"DROP DATABASE\" sono disabilitati."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Vuoi veramente "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero database!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero database!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero database!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Cancellazione Evento"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Cancellazione Procedura"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Cancella dati di tracciamento"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Cancellazione Chiave primaria/index"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Questa operazione potrebbe impiegare molto tempo. Procedere comunque?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Stai per DISABILITARE una repository BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Valore mancante nel form!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Questo non è un numero!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Il nome di host è vuoto!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Il nome utente è vuoto!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "La password è vuota!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "La password non coincide!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Aggiungi un nuovo Utente"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Crea Utente"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Ricaricamento privilegi"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Rimozione Utenti Selezionati"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Chiudi"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Annulla"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Caricamento"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Elaborazione Richiesta"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Errore nel processare la richiesta"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Eliminazione colonna"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Creazione chiave primaria"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Rinominazione dei Database"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Ricarica Database"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Sto copiando il Database"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Sto cambiando il charset"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "La tabella deve avere come minimo una colonna"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Crea tabella"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Ricerca in corso"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Nascondi riquadro query SQL"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Mostra riquadro query SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Modifica in linea"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Salva"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Nascondi"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Nascondi criteri di ricerca"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Mostra criteri di ricerca"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Seleziona le chiavi referenziali"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Seleziona Foreign Key"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Seleziona la chiave primaria o una chiave univoca"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Scegli la colonna da mostrare"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Aggiungi un'opzione alla colonna "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Genera password"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Cambia password"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Più"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1175,254 +1213,260 @@ msgstr ""
"l'aggiornamento. La versione più recente è la %s, rilasciata il %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", versione stabile piú recente:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Vai al database"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Fatto"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Precedente"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Prossimo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Oggi"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Gennaio"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Febbraio"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Marzo"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Aprile"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Maggio"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Giugno"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Luglio"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Agosto"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Setttembre"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Ottobre"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Novembre"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Dicembre"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mag"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Giu"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Lug"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Ott"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Domenica"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Lunedì"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Martedì"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Mercoledì"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Giovedì"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Venerdì"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Sabato"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Gi"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Sett"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Ora"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Secondo"
@@ -1474,33 +1518,33 @@ msgid "No index defined!"
msgstr "Nessun indice definito!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indici"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unica"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Compresso"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinalità"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Commenti"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifica"
@@ -1524,32 +1568,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Database"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Errore"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d riga modificata."
msgstr[1] "%1$d righe modificate."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d riga cancellata."
msgstr[1] "%1$d righe cancellate."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1644,8 +1688,8 @@ msgstr "Benvenuto in %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La ragione di questo è che probabilmente non hai creato alcun file di "
"configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno."
@@ -1796,19 +1840,19 @@ msgstr "Tabelle"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dati"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Totale"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -1898,16 +1942,16 @@ msgstr ""
"Nome host per il server %1$s non valido. Controlla la tua configurazione."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Metodo di autenticazione impostato nella configurazione non valido:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva."
@@ -1942,7 +1986,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentazione"
@@ -2090,7 +2134,7 @@ msgstr "La %s funzionalità è affetta da un bug noto, vedi %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struttura"
@@ -2124,7 +2168,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Selezionare dalla cartella di upload del server web %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "La directory impostata per l'upload non può essere trovata"
@@ -2284,7 +2328,7 @@ msgstr "Consente agli utenti di personalizzare questo valore"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Riavvia"
@@ -2415,7 +2459,7 @@ msgid "Compress on the fly"
msgstr "Comprimi al volo"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "File di configurazione"
@@ -2545,7 +2589,7 @@ msgid "Character set of the file"
msgstr "Codifica dei caratteri del file"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formato"
@@ -2849,7 +2893,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Personalizza l'aspetto del frame di navigazione"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servers"
@@ -3636,7 +3680,7 @@ msgstr "File di configurazione SweKey"
msgid "Authentication method to use"
msgstr "Metodo di autenticazione da usare"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Tipo di autenticazione"
@@ -4165,9 +4209,9 @@ msgstr "Richiede l'abilitazione del validatore SQL"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Password"
@@ -4191,8 +4235,8 @@ msgstr ""
"Se hai un nome utente personalizzato, specificalo qui (il predefinito é [kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Nome utente"
@@ -4321,7 +4365,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Instruzioni multiple verbose"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Controlla l'ultima versione"
@@ -4480,7 +4524,7 @@ msgstr "Eventi"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nome"
@@ -4503,8 +4547,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegi"
@@ -4516,7 +4560,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Tipo di risultato"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4538,23 +4582,23 @@ msgstr "Il server non risponde"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(o il socket del server locale MySQL non è correttamente configurato)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Dettagli..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Cambia password"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Nessuna Password"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Reinserisci"
@@ -4576,7 +4620,7 @@ msgid "Create"
msgstr "Crea"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nessun Privilegio"
@@ -4682,8 +4726,8 @@ msgstr ", il nome della tabella diventerá @TABLE@"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
@@ -4705,7 +4749,7 @@ msgstr "Compressione:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Nessuno"
@@ -4883,7 +4927,7 @@ msgstr "Ordina per chiave"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opzioni"
@@ -4916,62 +4960,62 @@ msgstr "Mostra contenuti BLOB"
msgid "Browser transformation"
msgstr "Trasformazione del browser"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Copia"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "La riga è stata cancellata"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Rimuovi"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "nella query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Mostrando i righi"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "totale"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "La query ha impiegato %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Modifica"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operazioni sui risultati della query"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Vista stampa (con full text)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Mostra diagramma"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Crea vista"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link non trovato"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informazioni sulla versione"
@@ -5423,8 +5467,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile "
"su %sPrimeBase XT Home Page%s."
@@ -5525,9 +5569,9 @@ msgstr "Mostra tipi MIME"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5538,7 +5582,7 @@ msgid "Generation Time"
msgstr "Generato il"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versione del server"
@@ -5899,7 +5943,32 @@ msgstr "Nessuno"
msgid "Convert to Kana"
msgstr "Converti a Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Ve"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Invia"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Aggiungi indice"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Nessun cambiamento"
@@ -6208,8 +6277,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nome utente"
@@ -6230,7 +6299,7 @@ msgstr "Variabile"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valore"
@@ -6250,34 +6319,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Aggiungi un utente per replicazione slave"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Qualsiasi utente"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Utilizza campo text"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Qualsiasi host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Locale"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Questo Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Utilizza la Tabella dell'Host"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6341,7 +6410,7 @@ msgstr "Attributi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6434,12 +6503,12 @@ msgid "Toggle scratchboard"
msgstr "(dis)attiva scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Lingua non conosciuta : %1$s."
@@ -6512,7 +6581,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Esegui la/e query SQL sul database %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Cancella"
@@ -6544,10 +6613,6 @@ msgstr "Delimitatori"
msgid " Show this query here again "
msgstr " Mostra di nuovo questa query "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Invia"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Visualizza solo"
@@ -6556,7 +6621,7 @@ msgstr "Visualizza solo"
msgid "Location of the text file"
msgstr "Percorso del file"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "directory di upload del web-server"
@@ -6608,19 +6673,19 @@ msgstr "INIZIO RAW"
msgid "END RAW"
msgstr "FINE RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Appendi una virgoletta ` alla fine della query!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Virgolette non chiuse"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identificatore Non Valido"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Stringa di Punctuation Sconosciuta"
@@ -6669,7 +6734,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indice"
@@ -6716,12 +6781,12 @@ msgid "As defined:"
msgstr "Come definito:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primaria"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Testo completo"
@@ -6735,7 +6800,7 @@ msgstr ""
"chiedere all'autore cosa %s faccia."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Motore di Memorizzazione"
@@ -6743,12 +6808,12 @@ msgstr "Motore di Memorizzazione"
msgid "PARTITION definition"
msgstr "Definizione PARTITION"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Aggiungi %s campo/i"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Devi aggiungere almeno un campo."
@@ -6935,73 +7000,73 @@ msgstr "Non sono stati trovati file ZIP all'interno dell'archivio!"
msgid "Error in ZIP archive:"
msgstr "Errore nell'archivio ZIP:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Impostazioni Generali"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Collation della connessione di MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Impostazioni di Presentazione"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Ulteriori impostazioni"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Versione protocollo"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Utente"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Set di caratteri MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Web server"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Versione MySQL client"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Estensioni PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Mostra le info sul PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Home page ufficiale di phpMyAdmin"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Contribuisci"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Ricevi Auito"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Lista dei cambiamenti"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7014,7 +7079,7 @@ msgstr ""
"dovresti realmente riparare a questa falla nella sicurezza impostando una "
"password per l'utente 'root'."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7024,7 +7089,7 @@ msgstr ""
"opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di "
"alcuni dati!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7035,7 +7100,7 @@ msgstr ""
"phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri "
"e questo può portare a risultati inaspettati."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7047,7 +7112,7 @@ msgstr ""
"validitá del cookie configurata in phpMyAdmin, per questo motivo, i dati di "
"login scadranno prima di come configurato in phpMyAdmin."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7056,13 +7121,13 @@ msgstr ""
"phpMyAdmin, per questo motivo, it tuo login scadrá prima di quanto "
"configurato in phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Adesso c'è bisogno di una password per il file di configurazione "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7072,7 +7137,7 @@ msgstr ""
"installazione, esiste ancora nella cartella del tuo phpMyAdmin. Si consiglia "
"di rimuoverla una volta configurato phpMyAdmin."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7082,7 +7147,7 @@ msgstr ""
"caratteristiche aggiuntive sono state disattivate. Per scoprire perché "
"clicca %squi%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7092,7 +7157,7 @@ msgstr ""
"funzioni di phpMyAdmin saranno mancanti. Per esempio la navigazione dei "
"frame non sarà aggiornata automaticamente."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7101,14 +7166,14 @@ msgstr ""
"Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di "
"MySQL server %s. Potrebbe causare comportamenti imprevedibili."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Sul server è in esecuzione Suhosin. Controlla la documentazione: "
-"%sdocumentation%s per possibili problemi."
+"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
+"sdocumentation%s per possibili problemi."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
msgid "No databases"
@@ -7122,12 +7187,12 @@ msgstr "Filtra"
msgid "filter tables by name"
msgstr "filtra tabbelle in base al nome"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Crea tabella"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Prego, selezionare un database"
@@ -7495,75 +7560,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Comprende tutti i privilegi tranne GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permette di alterare la struttura di tabelle esistenti."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permette di creare nuove tabelle e nuovi databases."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Permette la creazione di routines memorizzate."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permette di creare nuove tabelle."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permette di creare tabelle temporanee."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Permette di creare, cancellare e rinominare gli account utente."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Permette la creazione di nuove viste."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permette di cancellare dati."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permette di eliminare databases e tabelle."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permette di eliminare tabelle."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Permette di impostare gli eventi per lo scheduler"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Permette l'esecuzione di routines memorizzate."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Permette di importare dati da e esportare dati in file."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7571,34 +7636,34 @@ msgstr ""
"privilegi."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permette di creare ed eliminare gli indici."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permette di inserire e sovrascrivere dati."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Permette di bloccare le tabelle per il thread corrente."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7606,60 +7671,60 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Limite di connessioni simultanee che un utente può fare."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Permette di vedere i processi di tutti gli utenti"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Non ha alcun effetto in questa versione di MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Necessario per la replicazione degli slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permette di leggere i dati."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Accorda l'accesso alla lista completa dei databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permette di chiudere il server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7671,12 +7736,12 @@ msgstr ""
"utenti."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Permette di creare e di eliminare i triggers"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permette di cambiare i dati."
@@ -7689,192 +7754,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nessun"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilegi relativi alle tabelle"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: i nomi dei privilegi di MySQL sono in Inglese "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Privilegi globali"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilegi specifici al database"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Amministrazione"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Privilegi globali"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilegi specifici al database"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limiti di risorse"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "N.B.: 0 (zero) significa nessun limite."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Informazioni di Login"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Non cambiare la password"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Nessun utente trovato."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "L'utente %s esiste già!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Hai aggiunto un nuovo utente."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Hai aggiornato i permessi per %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Hai revocato i privilegi per %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "La password per l'utente %s è cambiata con successo."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Cancellazione in corso di %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Nessun utente selezionato per la cancellazione!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Caricamento dei privilegi in corso"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Gli utenti selezionati sono stati cancellati con successo."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "I privilegi sono stati ricaricati con successo."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Modifica Privilegi"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revoca"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Qualsiasi"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Vista d'insieme dell'utente"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Aggiungi un nuovo utente"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Rimuove gli utenti selezionati"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Elimina i databases gli stessi nomi degli utenti."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilegi relativi alle colonne"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Aggiungi privilegi sul seguente database"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Aggiungi privilegi sulla seguente tabella"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Cambia le Informazioni di Login / Copia Utente"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Crea un nuovo utente con gli stessi privilegi e ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... mantieni quello vecchio."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... cancella quello vecchio dalla tabella degli utenti."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7882,42 +7947,42 @@ msgstr ""
" ... cancella quello vecchio dalla tabella degli utenti e in seguito "
"ricarica i privilegi."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Database per l'utente"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Nessuno"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Garantisci tutti i privilegi per il database "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Utenti che hanno accesso a "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globale"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "specifico del database"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "wildcard"
@@ -9088,7 +9153,7 @@ msgstr "Valore sessione"
msgid "Global value"
msgstr "Valore globale"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Scarica"
@@ -9129,55 +9194,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Connessione non sicura"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Configurazione di memorizzazione"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Panoramica"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Mostra i messaggi nascosti (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Non ci sono server configurati"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nuovo server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Lingua predefinita"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "lascia la scelta all'utente"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- nessuno -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Server predefinito"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Fine del file"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Visualizza"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Carica"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Homepage di phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Dona"
@@ -9342,10 +9419,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - "
-"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia"
-"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se "
-"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
+"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %"
+"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. "
+"Comunque, la protezione a base di IP potrebbe non essere affidabile se il "
+"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"connessi."
#: setup/lib/index.lib.php:268
@@ -9360,8 +9437,8 @@ msgstr ""
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
"gli host in uso live. Chiunque che conosce o indovina il tuo URL di "
-"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
-"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %"
+"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format
@@ -9447,64 +9524,64 @@ msgstr "La tabella %1$s è già stata modificata con successo"
msgid "Function"
msgstr "Funzione"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
" A causa della lunghezza,
questo campo potrebbe non essere "
"modificabile "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Rimuovi le referenze al REPOSITORY BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Dato binario - non modificare"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Carica nella repository BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Inserisci come nuova riga"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Inserisci come nuova riga e ignora gli errori"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Mostra la insert query"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "e quindi"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Indietro"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Inserisci un nuovo record"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Torna a questa pagina"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Modifica il record successivo"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL"
"+frecce per spostarlo altrove"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Riprendi inserimento con %s righe"
@@ -9662,7 +9739,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Aggiungi all'indice %s colonna/e"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Il contatore delle colonne deve essere superiore a 0."
@@ -9688,97 +9765,97 @@ msgstr "La tabella %s è stata copiata su %s."
msgid "The table name is empty!"
msgstr "Il nome della tabella è vuoto!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Altera tabella ordinata per"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singolarmente)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Sposta la tabella nel (database.tabella):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opzioni della tabella"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Rinomina la tabella in"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copia la tabella nel (database.tabella):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Passa alla tabella copiata"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Amministrazione tabella"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Deframmenta la tabella"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "La tabella %s è stata inizializzata"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Ricarica la tabella (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Rimouvi la tabella o i dati"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Svuota la tabella (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Elimina la tabbella (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Manutenzione partizione"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partizione %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analizza"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Controlla"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Ottimizza"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Ricrea"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Ripara"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Rimuove partizionamento"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Controlla l'integrità delle referenze:"
@@ -9786,39 +9863,39 @@ msgstr "Controlla l'integrità delle referenze:"
msgid "Show tables"
msgstr "Mostra le tabelle"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Spazio utilizzato"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Utilizzo"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effettivo"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistiche righe"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Istruzioni"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statico"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamico"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Lunghezza riga"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Dimensione riga "
@@ -9897,52 +9974,52 @@ msgstr "Nessuno"
msgid "Column %s has been dropped"
msgstr "Il campo %s è stato eliminato"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Una chiave primaria è stata aggiunta in %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Un indice è stato aggiunto in %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Mostra piú azioni"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Vedi relazioni"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Proponi la struttura della tabella"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Aggiungi campo"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Alla fine della tabella"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "All'inizio della tabella"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Dopo %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Crea un indice su %s campi"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partizionato"
@@ -9970,7 +10047,7 @@ msgstr "Monitoraggio per %s.%s, versione %s é attivato."
msgid "SQL statements executed."
msgstr "Instruzione SQL eseguita."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9978,101 +10055,131 @@ msgstr ""
"Puoi eseguire il dump creando ed utilizzando un database temporaneo. Prego "
"assicurati che hai i corretti permessi per effettuare queste azioni."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Rimuovi le linee seguenti se non né hai bisogno."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "Instruzione SQL esporatata. Copia il dump o eseguilo."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Versione %s del snapshot (codice SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Monitora le istuzioni delle definizioni dei dati:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Accumula gli errori"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Monitora le istuzioni delle manipulazioni dei dati:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Instruzioni monitorate"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Mostra %s con date dal %s al %s dell'utente %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Cancella dati di tracciamento per questa tabella"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Nessun database"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Instruzione della definizione dei dati"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Instruzione della manipulazione dei dati"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Dump SQL (scarica il file)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "dump SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Questa opzione sostituerá la tua tabbella e i dati contenuti."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Esecuzione SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Esporta come %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Mostra versioni"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versione"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Disattiva il tracking per %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Disattiva ora"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Attiva il tracking per %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Attiva ora"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Crea versione %s di %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Monitora le istuzioni delle definizioni dei dati:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Monitora le istuzioni delle manipulazioni dei dati:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Crea versione"
diff --git a/po/ja.po b/po/ja.po
index 0524c6d663..7533b5a451 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2011-05-04 10:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
+"PO-Revision-Date: 2011-05-05 11:38+0200\n"
"Last-Translator: Yuichiro \n"
"Language-Team: japanese \n"
-"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "すべて表示"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "検索"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "検索"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "実行する"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "キー名"
@@ -99,7 +99,6 @@ msgid "No blob streaming server configured!"
msgstr "BLOB ストリーミングサーバが設定されていません!"
#: bs_disp_as_mime_type.php:35
-#| msgid "Failed to write file to disk."
msgid "Failed to fetch headers"
msgstr "ヘッダの取得に失敗しました。"
@@ -113,23 +112,25 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
+"ファイル %s は、このシステムでは使用できません。詳細については www."
+"phpmyadmin.net をご覧ください。"
#: db_create.php:58
#, php-format
msgid "Database %1$s has been created."
msgstr "データベース %1$s を作成しました。"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "データベースのコメント:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "テーブルのコメント"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +138,7 @@ msgstr "テーブルのコメント"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "カラム"
@@ -148,11 +149,11 @@ msgstr "カラム"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "種別"
@@ -162,8 +163,8 @@ msgstr "種別"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "ヌル(NULL)"
@@ -173,7 +174,7 @@ msgstr "ヌル(NULL)"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "デフォルト値"
@@ -196,39 +197,40 @@ msgstr "リンク先"
msgid "Comments"
msgstr "コメント"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "いいえ"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "はい"
@@ -240,8 +242,8 @@ msgstr "印刷"
msgid "View dump (schema) of database"
msgstr "DB のダンプ(スキーマ)表示"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "このデータベースにはテーブルがありません"
@@ -267,85 +269,87 @@ msgstr "データベース %s を %s にリネームしました"
msgid "Database %s has been copied to %s"
msgstr "データベース %s を %s にコピーしました"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "新しいデータベース名"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "コマンド"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "データベースの削除"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "データベース %s を削除しました"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "データベースを削除する(DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "データベースのコピー先"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "構造のみ"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "構造とデータ"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "データのみ"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "コピーの前に CREATE DATABASE する"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s を追加"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT 値を追加する"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "制約を追加する"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "コピーしたデータベースに切り替える"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "照合順序"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
-msgstr "phpMyAdmin の設定保存場所が無効になっています。理由については%sこちら%sをご覧ください。"
+msgstr ""
+"phpMyAdmin の設定保存場所が無効になっています。理由については%sこちら%sをご覧"
+"ください。"
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "リレーショナルスキーマを編集またはエクスポートする"
@@ -353,17 +357,17 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "テーブル"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "行"
@@ -379,21 +383,21 @@ msgstr "使用中"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "作成日時"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "最終更新"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "最終検査"
@@ -403,97 +407,90 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s テーブル"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL は正常に実行されました"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "最低ひとつは表示するカラムを選択してください"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "切り替える:"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "Visual query builder"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "ソート"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "昇順"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "降順"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "表示"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "条件"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "挿入"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "および"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "削除"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "または"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "修正"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "条件行を追加・削除する"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "カラムを追加・削除する"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "クエリを更新する"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "利用するテーブル"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "データベース %s のSQL:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "クエリを実行する"
@@ -533,24 +530,24 @@ msgstr[0] "%s 件(テーブル %s)"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "表示"
#: db_search.php:259
-#, fuzzy, php-format
-#| msgid "Dumping data for table"
+#, php-format
msgid "Delete the matches for the %s table?"
-msgstr "テーブルのデータをダンプしています"
+msgstr "テーブル %s に対して条件に一致したものを削除しますか?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "削除"
@@ -588,17 +585,17 @@ msgstr "検索するカラム:"
msgid "No tables found in database"
msgstr "このデータベースにはテーブルがありません"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "テーブル %s を空にしました"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "ビュー %s を破棄しました"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "テーブル %s を削除しました"
@@ -611,11 +608,11 @@ msgstr "SQL コマンドの追跡はアクティブです。"
msgid "Tracking is not active."
msgstr "SQL コマンドの追跡は非アクティブです。"
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -639,22 +636,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "チェックしたものを:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "すべてチェックする"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "すべてのチェックを外す"
@@ -663,16 +660,16 @@ msgid "Check tables having overhead"
msgstr "オーバーヘッドのあるテーブルを確認する"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "エクスポート"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "印刷用画面"
@@ -684,28 +681,46 @@ msgstr "空にする"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "削除"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "テーブルをチェックする"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "テーブルを最適化する"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "テーブルを修復する"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "テーブルを分析する"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "テーブルに移動"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "テーブルデータを差し替えるファイル"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "テーブルデータを差し替えるファイル"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "データ辞書"
@@ -719,10 +734,10 @@ msgstr "SQL コマンドを追跡しているテーブル"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "データベース"
@@ -730,36 +745,36 @@ msgstr "データベース"
msgid "Last version"
msgstr "最後のバージョン"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "作成日時"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "更新日時"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "状態"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "操作"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "このテーブルに対しての追跡データを削除する"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "アクティブ"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "非アクティブ"
@@ -767,11 +782,11 @@ msgstr "非アクティブ"
msgid "Versions"
msgstr "バージョン"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "追跡レポート"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "構造のスナップショット"
@@ -779,8 +794,8 @@ msgstr "構造のスナップショット"
msgid "Untracked tables"
msgstr "SQL コマンドを追跡していないテーブル"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "テーブルを追跡する"
@@ -807,7 +822,9 @@ msgstr "成形結果"
#: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field"
-msgstr "結合された値(成形結果)を「長さ/値」フィールドにコピー&ペーストしてください。"
+msgstr ""
+"結合された値(成形結果)を「長さ/値」フィールドにコピー&ペーストしてくださ"
+"い。"
#: export.php:73
msgid "Selected export type has to be saved in file!"
@@ -839,8 +856,8 @@ msgstr "ダンプをファイル %s に保存しました"
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください"
@@ -857,7 +874,9 @@ msgstr "ファイルを読み込めませんでした"
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
-msgstr "サポートされていない圧縮形式 (%s) のファイルを読み込もうとしました。この形式はサポートされていないか設定で無効にされています。"
+msgstr ""
+"サポートされていない圧縮形式 (%s) のファイルを読み込もうとしました。この形式"
+"はサポートされていないか設定で無効にされています。"
#: import.php:336
msgid ""
@@ -865,13 +884,15 @@ msgid ""
"file size exceeded the maximum size permitted by your PHP configuration. See "
"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
msgstr ""
-"インポートするデータを受信できませんでした。ファイル名が送信されていないか、ファイルサイズが PHP "
-"の設定で許可された最大値を超えています。[a@./Documentation.html#faq1_16@Documentation]FAQ "
-"1.16[/a] をご覧ください。"
+"インポートするデータを受信できませんでした。ファイル名が送信されていないか、"
+"ファイルサイズが PHP の設定で許可された最大値を超えています。[a@./"
+"Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] をご覧ください。"
#: import.php:371 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
-msgstr "インポートプラグインが読み込めません。正しくインストールされているか確認してください!"
+msgstr ""
+"インポートプラグインが読み込めません。正しくインストールされているか確認して"
+"ください!"
#: import.php:396
msgid "The bookmark has been deleted."
@@ -895,7 +916,9 @@ msgstr "インポートは正常終了しました。%d 個のクエリを実行
msgid ""
"Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume."
-msgstr "スクリプトがタイムアウトしました。インポートを完了させたいのであれば同じファイルを再送信すればインポートが再開されます。"
+msgstr ""
+"スクリプトがタイムアウトしました。インポートを完了させたいのであれば同じファ"
+"イルを再送信すればインポートが再開されます。"
#: import.php:425
msgid ""
@@ -905,6 +928,13 @@ msgstr ""
"ただし、最後に実行したときはまったくデータを解析できませんでした。ふつうは "
"PHP の時間制限を伸ばさない限りこのデータのインポートはできません"
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL は正常に実行されました"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -929,484 +959,506 @@ msgstr "クリックで選択解除"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "DROP DATABASE 文は無効にされています"
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "本当に実行しますか?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "データベースを完全に削除しようとしています!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "データベースを完全に削除しようとしています!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "データベースを完全に削除しようとしています!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "イベント削除中"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "プロシージャ削除中"
-#: js/messages.php:35
-#| msgid "Allows inserting and replacing data."
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "追跡データの削除中"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "主キー/インデックスの削除中"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "この作業には時間がかかることがあります。続行しますか?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "BLOB 格納を無効にしようとしています!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
-msgstr "データベース %s に対する全ての BLOB 参照を無効にしようとしていますが、よろしいですか?"
+msgstr ""
+"データベース %s に対する全ての BLOB 参照を無効にしようとしていますが、よろし"
+"いですか?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "フォームに入力されていない値があります!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "数値ではありません!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "ホスト名が空です!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "ユーザ名が空です!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "パスワードが空です!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "パスワードが異なっています!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "新しいユーザを追加する"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "ユーザを作成する"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "特権をリロードする"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "選択したユーザを削除する"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "閉じる"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "キャンセル"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "読み込み中"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "要求を処理中"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "要求処理中でのエラー"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "カラムを削除中"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "主キーの追加中"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "データベースのリネーム中"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "データベースの再読み込み中"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "データベースをコピー中"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "文字セットの変更中"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "テーブルには最低ひとつのカラムが必要です"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "テーブルを作成"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "検索中"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "クエリボックスを隠す"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "クエリボックスを表示"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "インライン編集"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "保存する"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "隠す"
-#: js/messages.php:93
-#| msgid "in query"
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "検索条件を隠す"
-#: js/messages.php:94
-#| msgid "Showing SQL query"
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "検索条件を表示する"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "無視"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "参照されているキーを選択"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "外部キーを選択してください"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "主キーまたはユニークキーを選択してください"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "表示するカラムを選択してください"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "カラムに対するオプションを追加する"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "パスワードを生成する"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "生成する"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "パスワードを変更する"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "その他"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdminの新しいバージョンが提供されています。アップグレードを検討をお奨めします。最新バージョンは %s にリリースされた %s "
-"されたものです。"
+"phpMyAdmin の新しいバージョンが提供されています。アップグレードを検討をお奨め"
+"します。最新バージョンは %s で、%s にリリースされています。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", 最終安定バージョン:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "データベースに移動"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "決定"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "前へ"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "次へ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "今日"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "1 月"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "2 月"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "3 月"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "4 月"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "5 月"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "6 月"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "7 月"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "8 月"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "9 月"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "10 月"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "11 月"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "12 月"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "1 月"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "2 月"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "3 月"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "4 月"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "5 月"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "6 月"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "12 月"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "日"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "月"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "火"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "水"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "木"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "金"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "土"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "土"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "月"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "火"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "水"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "木"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "金"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "土"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
-#| msgid "Wiki"
+#: js/messages.php:230
msgid "Wk"
msgstr "週"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "時"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "分"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "秒"
@@ -1460,33 +1512,33 @@ msgid "No index defined!"
msgstr "インデックスが定義されていません!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "インデックスサイズ"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "ユニーク"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "圧縮"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "一意な値の数"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "コメント"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "編集"
@@ -1510,30 +1562,30 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "データベース"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "エラー"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d 行変更しました。"
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d 行削除しました。"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1624,11 +1676,11 @@ msgstr "%s へようこそ"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
-"ト%2$s を利用して設定ファイルを作成してください"
+"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
+"$s を利用して設定ファイルを作成してください"
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1682,7 +1734,8 @@ msgstr "クッキーを有効にしてください"
#: libraries/auth/signon.auth.lib.php:206
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
-msgstr "パスワードなしログインは設定 (AllowNoPassword) によって禁止されています。"
+msgstr ""
+"パスワードなしログインは設定 (AllowNoPassword) によって禁止されています。"
#: libraries/auth/cookie.auth.lib.php:647
#: libraries/auth/signon.auth.lib.php:210
@@ -1724,7 +1777,6 @@ msgid "PBMS error"
msgstr "PBMS エラー"
#: libraries/blobstreaming.lib.php:267
-#| msgid "MySQL connection collation"
msgid "PBMS connection failed:"
msgstr "PBMS 接続に失敗しました:"
@@ -1775,24 +1827,23 @@ msgstr "テーブル"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "データ"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "合計"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "オーバーヘッド"
#: libraries/build_html_for_db.lib.php:93
-#| msgid "No databases"
msgid "Jump to database"
msgstr "データベースに移動"
@@ -1801,7 +1852,6 @@ msgid "Not replicated"
msgstr "レプリケーションしていない"
#: libraries/build_html_for_db.lib.php:136
-#| msgid "Replication"
msgid "Replicated"
msgstr "レプリケーションしている"
@@ -1847,9 +1897,10 @@ msgid ""
"semicolon is missing somewhere.
If you receive a blank page, everything "
"is fine."
msgstr ""
-"phpMyAdmin の設定ファイルを読み込めませんでした!
文法エラーが発生したか、ファイルが見つかりません。
下のリンクから直接設定ファイルを読み込んで PHP "
-"のエラーメッセージを確認してください。たいていの場合はどこかに引用符やセミコロンの抜けがあります。
空白のページが表示されれば問題ありません。"
+"phpMyAdmin の設定ファイルを読み込めませんでした!
文法エラーが発生した"
+"か、ファイルが見つかりません。
下のリンクから直接設定ファイルを読み込ん"
+"で PHP のエラーメッセージを確認してください。たいていの場合はどこかに引用符や"
+"セミコロンの抜けがあります。
空白のページが表示されれば問題ありません。"
#: libraries/common.inc.php:587
#, php-format
@@ -1875,16 +1926,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください"
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "サーバ"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "設定ファイルに無効な認証方法が指定されています:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s を %s 以降にアップグレードしてください"
@@ -1919,7 +1970,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "ドキュメント"
@@ -2067,7 +2118,7 @@ msgstr "%s の機能には既知のバグがあります。%s をご覧くださ
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "構造"
@@ -2097,12 +2148,11 @@ msgstr "アップロードファイル:"
#: libraries/common.lib.php:2979
#, php-format
-#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "指定したアップロードディレクトリが利用できません"
@@ -2119,7 +2169,6 @@ msgid "Open"
msgstr "開いておく"
#: libraries/config.values.php:74
-#| msgid "Unclosed quote"
msgid "Closed"
msgstr "閉じておく"
@@ -2204,7 +2253,6 @@ msgstr "%s ためのデータがありません"
#: libraries/config/FormDisplay.class.php:736
#: libraries/config/FormDisplay.class.php:740
-#| msgid "Variable"
msgid "unavailable"
msgstr "使えません"
@@ -2229,7 +2277,6 @@ msgid "SQL Validator is disabled"
msgstr "SQL 検証は無効です"
#: libraries/config/FormDisplay.class.php:773
-#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "SOAP 拡張が見つかりません"
@@ -2259,11 +2306,11 @@ msgstr "デフォルト値に戻す"
#: libraries/config/FormDisplay.tpl.php:269
msgid "Allow users to customize this value"
-msgstr "この値を変更できることをユーザに許可する"
+msgstr "この値の変更をユーザに許可する"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "リセット"
@@ -2278,7 +2325,9 @@ msgstr "Ajax を有効にする"
#: libraries/config/messages.inc.php:19
msgid ""
"If enabled user can enter any MySQL server in login form for cookie auth"
-msgstr "有効にすると、クッキー認証の場合にログインフォームにおいて、ユーザーが任意の MySQL サーバを入力できるようになります。"
+msgstr ""
+"有効にすると、クッキー認証の場合にログインフォームにおいて、ユーザが任意の "
+"MySQL サーバを入力できるようになります。"
#: libraries/config/messages.inc.php:20
msgid "Allow login to any MySQL server"
@@ -2290,8 +2339,9 @@ msgid ""
"inside a frame, and is a potential [strong]security hole[/strong] allowing "
"cross-frame scripting attacks"
msgstr ""
-"有効にすると、フレームに対して異なるドメインに置かれているページを許可します。このことは、クロスフレームスクリプト攻撃を可能にする潜在的な[strong"
-"]セキュリティホール[/strong]にもなりえます。"
+"有効にすると、フレームに対して異なるドメインに置かれているページを許可しま"
+"す。このことは、クロスフレームスクリプト攻撃を可能にする潜在的な[strong]セ"
+"キュリティホール[/strong]にもなりえます。"
#: libraries/config/messages.inc.php:22
msgid "Allow third party framing"
@@ -2305,7 +2355,8 @@ msgstr "一般ユーザに「データベースを削除する」リンクを表
msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
-msgstr "[kbd]cookie[/kbd] 認証においてクッキーの暗号化に使用される秘密のパスフレーズ"
+msgstr ""
+"[kbd]cookie[/kbd] 認証においてクッキーの暗号化に使用される秘密のパスフレーズ"
#: libraries/config/messages.inc.php:25
msgid "Blowfish secret"
@@ -2332,8 +2383,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
-"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/Bzip2]bzip2[/a] "
-"圧縮を有効にします。"
+"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/"
+"Bzip2]bzip2[/a] 圧縮を有効にします。"
#: libraries/config/messages.inc.php:31
msgid "Bzip2"
@@ -2345,8 +2396,9 @@ msgid ""
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
-"CHARとVARCHAR型のカラムに対しての編集用のフォームパーツのタイプを定義します。[kbd]input[/kbd] "
-"は入力文字数を制限することができます。[kbd]textarea[/kbd] は改行を入力すことができます。"
+"CHARとVARCHAR型のカラムに対しての編集用のフォームパーツのタイプを定義します。"
+"[kbd]input[/kbd] は入力文字数を制限することができます。[kbd]textarea[/kbd] は"
+"改行を入力すことができます。"
#: libraries/config/messages.inc.php:33
msgid "CHAR columns editing"
@@ -2377,15 +2429,16 @@ msgid ""
"Compress gzip/bzip2 exports on the fly without the need for much memory; if "
"you encounter problems with created gzip/bzip2 files disable this feature"
msgstr ""
-"エクスポートの際、バッファに溜まり次第 gzip/bzip2 圧縮していく方法です。あまり多くのメモリを必要とはしません。gzip/bzip2 "
-"ファイル作成で問題が発生した場合、この機能は無効になります。"
+"エクスポートの際、バッファに溜まり次第 gzip/bzip2 圧縮していく方法です。あま"
+"り多くのメモリを必要とはしません。gzip/bzip2 ファイル作成で問題が発生した場"
+"合、この機能は無効になります。"
#: libraries/config/messages.inc.php:40
msgid "Compress on the fly"
msgstr "逐次圧縮"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "設定ファイル"
@@ -2393,7 +2446,9 @@ msgstr "設定ファイル"
msgid ""
"Whether a warning ("Are your really sure...") should be displayed "
"when you're about to lose data"
-msgstr "データを失う作業をしようとしたとき、「本当に実行しますか?...」という警告を出すかどうか。"
+msgstr ""
+"データを失う作業をしようとしたとき、「本当に実行しますか?...」という警告を出"
+"すかどうか。"
#: libraries/config/messages.inc.php:43
msgid "Confirm DROP queries"
@@ -2404,7 +2459,6 @@ msgid "Debug SQL"
msgstr "SQL のデバッグ"
#: libraries/config/messages.inc.php:45
-#| msgid "Relational display field"
msgid "Default display direction"
msgstr "デフォルトの表示方向"
@@ -2413,8 +2467,8 @@ msgid ""
"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates "
"maximum number for which vertical model is used"
msgstr ""
-"[kbd]horizontal[/kbd](水平)、[kbd]vertical[/kbd](垂直)、数字のいずれか。数字は、垂直モデルが適用される最大の"
-"カラム数。"
+"[kbd]horizontal[/kbd](水平)、[kbd]vertical[/kbd](垂直)、数字のいずれか。"
+"数字は、垂直モデルが適用される最大のカラム数。"
#: libraries/config/messages.inc.php:47
msgid "Display direction for altering/creating columns"
@@ -2473,7 +2527,6 @@ msgid "Edit SQL queries in popup window"
msgstr "ポップアップウィンドウで SQL クエリを編集します。"
#: libraries/config/messages.inc.php:61
-#| msgid "Edit next row"
msgid "Edit in window"
msgstr "ウィンドウでの編集"
@@ -2497,7 +2550,8 @@ msgstr "エラー等のアイコン化"
msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
-msgstr "スクリプトの実行が許されている秒数を設定します。([kbd]0[/kbd] で制限なし)"
+msgstr ""
+"スクリプトの実行が許されている秒数を設定します。([kbd]0[/kbd] で制限なし)"
#: libraries/config/messages.inc.php:67
msgid "Maximum execution time"
@@ -2512,7 +2566,7 @@ msgid "Character set of the file"
msgstr "ファイルの文字セット"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "フォーマット"
@@ -2644,7 +2698,7 @@ msgstr "テーブル名やカラム名を逆クォートで囲む"
#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:257
#: libraries/display_export.lib.php:351
msgid "SQL compatibility mode"
-msgstr "SQL互換モード"
+msgstr "SQL 互換モード"
#: libraries/config/messages.inc.php:120
msgid "Syntax to use when inserting data"
@@ -2688,7 +2742,8 @@ msgstr "エクスポート時間を UTC(協定世界時)にする"
#: libraries/config/messages.inc.php:145
msgid "Force secured connection while using phpMyAdmin"
-msgstr "phpMyAdmin を使用している間、強制的にセキュリティで保護された接続をします。"
+msgstr ""
+"phpMyAdmin を使用している間、強制的にセキュリティで保護された接続をします。"
#: libraries/config/messages.inc.php:146
msgid "Force SSL connection"
@@ -2699,8 +2754,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 ""
-"外部キーのドロップダウンボックス内のソート順。[kbd]content[/kbd] は参照しているデータ、[kbd]id[/kbd] "
-"はキー値を表しています。"
+"外部キーのドロップダウンボックス内のソート順。[kbd]content[/kbd] は参照してい"
+"るデータ、[kbd]id[/kbd] はキー値を表しています。"
#: libraries/config/messages.inc.php:148
msgid "Foreign key dropdown order"
@@ -2767,7 +2822,6 @@ msgid "Features"
msgstr "機能"
#: libraries/config/messages.inc.php:165
-#| msgid "Generate"
msgid "General"
msgstr "一般"
@@ -2815,7 +2869,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "ナビゲーションフレームの概観の詳細設定"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "サーバ"
@@ -2836,7 +2890,6 @@ msgid "Microsoft Office"
msgstr "Microsoft Office"
#: libraries/config/messages.inc.php:185
-#| msgid "Open Document Text"
msgid "Open Document"
msgstr "Open Document"
@@ -2858,8 +2911,8 @@ msgid ""
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
"get special values."
msgstr ""
-"ブラウザのタイトルバーのテキストの指定を行います。使用可能な特別な埋め込み変数は[a@Documentation.html#cfg_TitleTable"
-"]ドキュメント[/a]を参照してください。"
+"ブラウザのタイトルバーのテキストの指定を行います。使用可能な特別な埋め込み変"
+"数は[a@Documentation.html#cfg_TitleTable]ドキュメント[/a]を参照してください。"
#: libraries/config/messages.inc.php:191
#: libraries/navigation_header.inc.php:83
@@ -2880,7 +2933,9 @@ msgstr "セキュリティ"
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL"
-msgstr "phpMyAdmin は、ユーザーインタフェースだけであり、その機能は MySQL を制限するものではないことをご了承ください。"
+msgstr ""
+"phpMyAdmin は、ユーザインタフェースだけであり、その機能は MySQL を制限するも"
+"のではないことをご了承ください。"
#: libraries/config/messages.inc.php:195
msgid "Basic settings"
@@ -2902,7 +2957,9 @@ msgstr "サーバ設定"
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for"
-msgstr "高度なサーバ設定。これらのオプションは、よく知らないのであれば変更しないでください。"
+msgstr ""
+"高度なサーバ設定。これらのオプションは、よく知らないのであれば変更しないでく"
+"ださい。"
#: libraries/config/messages.inc.php:200
msgid "Enter server connection parameters"
@@ -2918,8 +2975,9 @@ msgid ""
"features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration "
"storage[/a] in documentation"
msgstr ""
-"追加された機能にアクセスするには phpMyAdmin の設定保存場所を設定してください。ドキュメントの[a@Documentation.html"
-"#linked-tables]phpMyAdmin 設定保存場所[/a]参照。"
+"追加された機能にアクセスするには phpMyAdmin の設定保存場所を設定してくださ"
+"い。ドキュメントの[a@Documentation.html#linked-tables]phpMyAdmin 設定保存場所"
+"[/a]参照。"
#: libraries/config/messages.inc.php:203
msgid "Changes tracking"
@@ -2929,7 +2987,9 @@ msgstr "変更追跡機能"
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
-msgstr "データベースで行われた変更の追跡機能です。これには、 phpMyAdmin の設定保存場所が必要です。"
+msgstr ""
+"データベースで行われた変更の追跡機能です。これには、 phpMyAdmin の設定保存場"
+"所が必要です。"
#: libraries/config/messages.inc.php:205
msgid "Customize export options"
@@ -2975,9 +3035,10 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
-"SQL 検証サービスを使用する場合、[strong]すべての SQL 文は統計目的のために匿名で格納されていること[/strong]に注意する必要があり"
-"ます。[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
-"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
+"SQL 検証サービスを使用する場合、[strong]すべての SQL 文は統計目的のために匿名"
+"で格納されていること[/strong]に注意する必要があります。[br][em][a@http://"
+"sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 Upright "
+"Database Technology. All rights reserved.[/em]"
#: libraries/config/messages.inc.php:219
msgid "Startup"
@@ -3020,8 +3081,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
-"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/Gzip]gzip[/a] "
-"圧縮を有効にします。"
+"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/"
+"Gzip]gzip[/a] 圧縮を有効にします。"
#: libraries/config/messages.inc.php:230
msgid "GZip"
@@ -3035,7 +3096,9 @@ msgstr "iconv のための追加パラメータ"
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed"
-msgstr "有効にした場合、クエリの 1 つが失敗しても phpMyAdmin はマルチクエリの実行を続けます。"
+msgstr ""
+"有効にした場合、クエリの 1 つが失敗しても phpMyAdmin はマルチクエリの実行を続"
+"けます。"
#: libraries/config/messages.inc.php:233
msgid "Ignore multiple statement errors"
@@ -3047,7 +3110,8 @@ msgid ""
"This might be good way to import large files, however it can break "
"transactions."
msgstr ""
-"制限時間が近くなったときにスクリプト側でインポートを中断できるようにします。大きなファイルをインポートする場合には便利ですが、トランザクションが壊れるこ"
+"制限時間が近くなったときにスクリプト側でインポートを中断できるようにします。"
+"大きなファイルをインポートする場合には便利ですが、トランザクションが壊れるこ"
"ともあります。"
#: libraries/config/messages.inc.php:235
@@ -3068,7 +3132,9 @@ msgstr "テーブルデータを差し替えるファイル"
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available"
-msgstr "デフォルトの形式。このリストは対象(データベース、テーブル)に依存しているので注意してください。SQL は常に利用可能です。"
+msgstr ""
+"デフォルトの形式。このリストは対象(データベース、テーブル)に依存しているの"
+"で注意してください。SQL は常に利用可能です。"
#: libraries/config/messages.inc.php:244
msgid "Format of imported file"
@@ -3096,7 +3162,6 @@ msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "パーセントは適切な小数に変換する(例えば、12.00% を .12)"
#: libraries/config/messages.inc.php:255
-#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start"
msgstr "先頭から数えたスキップするクエリの数"
@@ -3141,7 +3206,6 @@ msgid "Display servers selection"
msgstr "サーバ選択を表示する"
#: libraries/config/messages.inc.php:269
-#| msgid "The number of tables that are open."
msgid "Minimum number of tables to display the table filter box"
msgstr "テーブルフィルタボックスを表示する最小のテーブル数"
@@ -3157,7 +3221,8 @@ msgstr "データベースツリーの区切り"
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
-msgstr "軽快版のみ。下の項目で定義する区切りが合った場合、ツリー表示になります。"
+msgstr ""
+"軽快版のみ。下の項目で定義する区切りが合った場合、ツリー表示になります。"
#: libraries/config/messages.inc.php:273
msgid "Display databases in a tree"
@@ -3196,7 +3261,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-"メインウィンドウ ([kbd]main[/kbd]) もしくは新しいウィンドウ ([kbd]new[/kbd]) にリンクされたページを開きます。"
+"メインウィンドウ ([kbd]main[/kbd]) もしくは新しいウィンドウ ([kbd]new[/kbd]) "
+"にリンクされたページを開きます。"
#: libraries/config/messages.inc.php:282
msgid "Logo link target"
@@ -3233,8 +3299,10 @@ msgid ""
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-"チェックした場合、ログアウト時に全てのサーバのクッキーを削除します。チェックを外した場合は、現在のサーバーに対してだけログアウトが行われます。このチェッ"
-"クを外しておくと、複数のサーバーに接続している時、他のサーバからのログアウト作業を忘れやすくなります。"
+"チェックした場合、ログアウト時に全てのサーバのクッキーを削除します。チェック"
+"を外した場合は、現在のサーバに対してだけログアウトが行われます。このチェック"
+"を外しておくと、複数のサーバに接続している時、他のサーバからのログアウト作業"
+"を忘れやすくなります。"
#: libraries/config/messages.inc.php:290
msgid "Delete all cookies on logout"
@@ -3244,7 +3312,9 @@ msgstr "ログアウト時に全てのクッキーを削除する"
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
-msgstr "cookie 認証モードの場合に、前回ログインしたときの状態に戻すかどうかを定義します。"
+msgstr ""
+"cookie 認証モードの場合に、前回ログインしたときの状態に戻すかどうかを定義しま"
+"す。"
#: libraries/config/messages.inc.php:292
msgid "Recall user name"
@@ -3257,8 +3327,10 @@ msgid ""
"and will be deleted as soon as you close the browser window. This is "
"recommended for non-trusted environments."
msgstr ""
-"ブラウザに保存されるログインクッキーの有効期限(秒数)を定義します。デフォルトの 0 は、セッションが存在している間だけ保存されていることを意味し、ブラ"
-"ウザのウィンドウが閉じられるとすぐに削除されます。これは、信頼されていない環境で使う場合に推奨します。"
+"ブラウザに保存されるログインクッキーの有効期限(秒数)を定義します。デフォル"
+"トの 0 は、セッションが存在している間だけ保存されていることを意味し、ブラウザ"
+"のウィンドウが閉じられるとすぐに削除されます。これは、信頼されていない環境で"
+"使う場合に推奨します。"
#: libraries/config/messages.inc.php:294
msgid "Login cookie store"
@@ -3295,7 +3367,7 @@ msgstr "表示できる SQL 文の最大の長さ"
#: libraries/config/messages.inc.php:302 libraries/config/messages.inc.php:307
#: libraries/config/messages.inc.php:335
msgid "Users cannot set a higher value"
-msgstr "ユーザーはこれより高い値を設定することはできません。"
+msgstr "ユーザはこれより高い値を設定することはできません。"
#: libraries/config/messages.inc.php:303
msgid "Maximum number of databases displayed in left frame and database list"
@@ -3331,8 +3403,8 @@ msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-"クッキー認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れる"
-"とこのメッセージを表示しないようにします。"
+"cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れると"
+"このメッセージを表示しないようにします。"
#: libraries/config/messages.inc.php:311
msgid "mcrypt warning"
@@ -3342,7 +3414,9 @@ msgstr "mcrypt 警告"
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
-msgstr "割り当てが許可されているスクリプトのバイト数。例:[kbd]32M[/kbd] ([kbd]0[/kbd] で制限無し)"
+msgstr ""
+"割り当てが許可されているスクリプトのバイト数。例:[kbd]32M[/kbd] ([kbd]0[/"
+"kbd] で制限無し)"
#: libraries/config/messages.inc.php:313
msgid "Memory limit"
@@ -3410,12 +3484,12 @@ msgid ""
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-"phpMyAdmin "
-"の設定保存に必要なテーブルを見つけることができなかった場合、データベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
+"phpMyAdmin の設定保存に必要なテーブルを見つけることができなかった場合、データ"
+"ベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
#: libraries/config/messages.inc.php:328
msgid "Missing phpMyAdmin configuration storage tables"
-msgstr "phpMyAdmin の設定保存用テーブルがありません"
+msgstr "phpMyAdmin の設定保存用テーブルが不明"
#: libraries/config/messages.inc.php:330
msgid "Iconic table operations"
@@ -3436,7 +3510,8 @@ msgid ""
"(lost by window close)."
msgstr ""
"データベースを基準としたクエリの履歴を必要とするなら有効にします(phpMyAdmin "
-"の設定保存場所の設定が必要です)。無効にした場合、クエリ履歴の表示に JavaScript を利用します(ウィンドウを閉じると履歴は消えます)。"
+"の設定保存場所の設定が必要です)。無効にした場合、クエリ履歴の表示に "
+"JavaScript を利用します(ウィンドウを閉じると履歴は消えます)。"
#: libraries/config/messages.inc.php:334
msgid "Permanent query history"
@@ -3484,10 +3559,11 @@ msgstr "コード変換エンジン"
#: libraries/config/messages.inc.php:346
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
-msgstr "カラム名ヘッダを何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になります。"
+msgstr ""
+"カラム名ヘッダを何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になりま"
+"す。"
#: libraries/config/messages.inc.php:347
-#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "カラム名ヘッダの繰り返し"
@@ -3545,8 +3621,8 @@ msgid ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-"[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス "
-"(ドキュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)"
+"[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス (ド"
+"キュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)"
#: libraries/config/messages.inc.php:362
msgid "SweKey config file"
@@ -3556,7 +3632,7 @@ msgstr "SweKey 設定ファイル"
msgid "Authentication method to use"
msgstr "使用する認証方法"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "認証タイプ"
@@ -3565,8 +3641,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-"[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合は空欄にします。[kbd]p"
-"ma_bookmark[/kbd] としておくのがいいでしょう。"
+"[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合"
+"は空欄にします。[kbd]pma_bookmark[/kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:366
msgid "Bookmark table"
@@ -3577,7 +3653,8 @@ msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]pma_column_info[/kbd] としておくのがいいでしょう。"
+"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]"
+"pma_column_info[/kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:368
msgid "Column information table"
@@ -3608,8 +3685,8 @@ msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-"権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は "
-"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。"
+"権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は [a@http://"
+"wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。"
#: libraries/config/messages.inc.php:375
msgid "Control user"
@@ -3627,7 +3704,9 @@ msgstr "テーブル数"
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
-msgstr "デザイナを使わない場合は空欄にします。[kbd]pma_designer_coords[/kbd] としておくのがいいでしょう。"
+msgstr ""
+"デザイナを使わない場合は空欄にします。[kbd]pma_designer_coords[/kbd] としてお"
+"くのがいいでしょう。"
#: libraries/config/messages.inc.php:379
msgid "Designer table"
@@ -3638,8 +3717,8 @@ 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 ""
-"詳細は [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] と "
-"[a@http://bugs.mysql.com/19588]MySQL Bugs[/a]。"
+"詳細は [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] "
+"と [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]。"
#: libraries/config/messages.inc.php:381
msgid "Disable use of INFORMATION_SCHEMA"
@@ -3665,7 +3744,9 @@ msgstr "非表示にするデータベース"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-msgstr "SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] としておくのがいいでしょう。"
+msgstr ""
+"SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] とし"
+"ておくのがいいでしょう。"
#: libraries/config/messages.inc.php:387
msgid "SQL query history table"
@@ -3699,10 +3780,13 @@ msgid ""
"their names in order and use [kbd]*[/kbd] at the end to show the rest in "
"alphabetical order."
msgstr ""
-"MySQL のワイルドカード文字(% および _)を使用することができますが、それらをリテラルインスタンス(実際の文字)として使いたい場合は、それらをエ"
-"スケープします。すなわち、[kbd]'my_db'[/kbd] ではなく [kbd]'my\\_db'[/kbd] "
-"と記述します。また、このオプションを使うことでデータベースの表示順を望むようにソートすることができます。望む順番に名前を入力していき、最後に "
-"[kbd]'*'[/kbd] とだけ入力しておきます。[kbd]'*'[/kbd] は残ったものをアルファベット順に並べて表示する働きをします。"
+"MySQL のワイルドカード文字(% および _)を使用することができますが、それらを"
+"リテラルインスタンス(実際の文字)として使いたい場合は、それらをエスケープし"
+"ます。すなわち、[kbd]'my_db'[/kbd] ではなく [kbd]'my\\_db'[/kbd] と記述しま"
+"す。また、このオプションを使うことでデータベースの表示順を望むようにソートす"
+"ることができます。望む順番に名前を入力していき、最後に [kbd]'*'[/kbd] とだけ"
+"入力しておきます。[kbd]'*'[/kbd] は残ったものをアルファベット順に並べて表示す"
+"る働きをします。"
#: libraries/config/messages.inc.php:394
msgid "Show only listed databases"
@@ -3719,7 +3803,9 @@ msgstr "config 認証用のパスワード"
#: libraries/config/messages.inc.php:397
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
-msgstr "PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] としておくのがいいでしょう。"
+msgstr ""
+"PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と"
+"しておくのがいいでしょう。"
#: libraries/config/messages.inc.php:398
msgid "PDF schema: pages table"
@@ -3731,18 +3817,19 @@ msgid ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-"リレーション、ブックマーク、PDF機能に使用されるデータベース。詳細な情報については "
-"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] "
-"を参照してください。これらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのがいいでしょう。"
+"リレーション、ブックマーク、PDF機能に使用されるデータベース。詳細な情報につい"
+"ては [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] を参照してください。こ"
+"れらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのが"
+"いいでしょう。"
#: libraries/config/messages.inc.php:400
-#| msgid "database name"
msgid "Database name"
msgstr "データベース名"
#: libraries/config/messages.inc.php:401
msgid "Port on which MySQL server is listening, leave empty for default"
-msgstr "MySQL サーバで開いているポート。デフォルトにしたい場合は空欄のままにします。"
+msgstr ""
+"MySQL サーバで開いているポート。デフォルトにしたい場合は空欄のままにします。"
#: libraries/config/messages.inc.php:402
msgid "Server port"
@@ -3753,8 +3840,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-"[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わない場合は空欄にします。[kb"
-"d]pma_relation[/kbd] としておくのがいいでしょう。"
+"[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな"
+"い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:404
msgid "Relation table"
@@ -3773,7 +3860,8 @@ msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-"設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を参照してください。"
+"設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を"
+"参照してください。"
#: libraries/config/messages.inc.php:408
msgid "Signon session name"
@@ -3785,7 +3873,9 @@ msgstr "サインオン URL"
#: libraries/config/messages.inc.php:410
msgid "Socket on which MySQL server is listening, leave empty for default"
-msgstr "MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにします。"
+msgstr ""
+"MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにしま"
+"す。"
#: libraries/config/messages.inc.php:411
msgid "Server socket"
@@ -3802,7 +3892,9 @@ msgstr "SSL の使用"
#: libraries/config/messages.inc.php:414
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
-msgstr "PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] としておくのがいいでしょう。"
+msgstr ""
+"PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし"
+"ておくのがいいでしょう。"
#: libraries/config/messages.inc.php:415
msgid "PDF schema: table coordinates"
@@ -3813,10 +3905,10 @@ msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]pma_table_info[/kbd] としておくのがいいでしょう。"
+"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]"
+"pma_table_info[/kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:417
-#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "表示するカラムためのテーブル"
@@ -3824,7 +3916,9 @@ msgstr "表示するカラムためのテーブル"
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
-msgstr "データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS コマンドを追加するかどうか。"
+msgstr ""
+"データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS コマンド"
+"を追加するかどうか。"
#: libraries/config/messages.inc.php:419
msgid "Add DROP DATABASE"
@@ -3834,7 +3928,9 @@ msgstr "DROP DATABASE を追加"
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
-msgstr "テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS コマンドを追加するかどうか。"
+msgstr ""
+"テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS コマンドを追加"
+"するかどうか。"
#: libraries/config/messages.inc.php:421
msgid "Add DROP TABLE"
@@ -3844,7 +3940,9 @@ msgstr "DROP TABLE を追加"
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
-msgstr "ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS コマンドを追加するかどうか。"
+msgstr ""
+"ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS コマンドを追加する"
+"かどうか。"
#: libraries/config/messages.inc.php:423
msgid "Add DROP VIEW"
@@ -3855,7 +3953,6 @@ msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "新しいバージョンに対して自動生成使用するコマンドのリストを定義します。"
#: libraries/config/messages.inc.php:425
-#| msgid "Statements"
msgid "Statements to track"
msgstr "追跡するコマンド"
@@ -3863,7 +3960,9 @@ msgstr "追跡するコマンド"
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
-msgstr "SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] としておくのがいいでしょう。"
+msgstr ""
+"SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] "
+"としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:427
msgid "SQL query tracking table"
@@ -3873,10 +3972,11 @@ msgstr "SQL コマンド追跡テーブル"
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
-msgstr "SQL コマンドの追跡機能が、テーブルやビューに対して自動的にバージョンを作成するかどうか。"
+msgstr ""
+"SQL コマンドの追跡機能が、テーブルやビューに対して自動的にバージョンを作成す"
+"るかどうか。"
#: libraries/config/messages.inc.php:429
-#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "バージョンの自動作成"
@@ -3884,11 +3984,13 @@ msgstr "バージョンの自動作成"
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_config[/kbd]"
-msgstr "データベースにユーザー設定の保存しない場合は空欄にします。[kbd]pma_config[/kbd] としておくのがいいでしょう。"
+msgstr ""
+"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_config[/"
+"kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:431
msgid "User preferences storage table"
-msgstr "ユーザー設定保存テーブル"
+msgstr "ユーザ設定保存テーブル"
#: libraries/config/messages.inc.php:433
msgid "User for config auth"
@@ -3899,7 +4001,8 @@ msgid ""
"Disable if you know that your pma_* tables are up to date. This prevents "
"compatibility checks and thereby increases performance"
msgstr ""
-"pma_* テーブルが最新のものであることがわかっている場合、無効にします。これは、互換性チェックをしないことにより、パフォーマンスを向上させます。"
+"pma_* テーブルが最新のものであることがわかっている場合、無効にします。これ"
+"は、互換性チェックをしないことにより、パフォーマンスを向上させます。"
#: libraries/config/messages.inc.php:435
msgid "Verbose check"
@@ -3931,8 +4034,9 @@ msgid ""
"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] 認証モードでは効果がないことに注意してください。なぜならパスワードが設定ファイルに直接書き込まれ"
-"ているからです。これは同じコマンドを直接実行する機能を制限するものではありません。"
+"これを有効にしても、[kbd]config[/kbd] 認証モードでは効果がないことに注意して"
+"ください。なぜならパスワードが設定ファイルに直接書き込まれているからです。こ"
+"れは同じコマンドを直接実行する機能を制限するものではありません。"
#: libraries/config/messages.inc.php:441
msgid "Show password change form"
@@ -3949,7 +4053,6 @@ msgid ""
msgstr "編集/挿入モードで種別フィールドを表示するかどうか定義します。"
#: libraries/config/messages.inc.php:444
-#| msgid "Show open tables"
msgid "Show field types"
msgstr "種別フィールドの表示"
@@ -3979,7 +4082,8 @@ msgstr "詳細な MySQL サーバ情報を表示する"
#: libraries/config/messages.inc.php:450
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
-msgstr "phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。"
+msgstr ""
+"phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。"
#: libraries/config/messages.inc.php:451
msgid "Show SQL queries"
@@ -3997,7 +4101,9 @@ msgstr "統計を表示する"
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
-msgstr "ツールチップが有効でデータベースのコメントが設定されている場合、名前とコメントを入れ替えて表示する形なります。"
+msgstr ""
+"ツールチップが有効でデータベースのコメントが設定されている場合、名前とコメン"
+"トを入れ替えて表示する形なります。"
#: libraries/config/messages.inc.php:455
msgid "Display database comment instead of its name"
@@ -4010,8 +4116,10 @@ msgid ""
"['LeftFrameTableSeparator'] directive, so only the folder is called like the "
"alias, the table name itself stays unchanged"
msgstr ""
-"[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアスは、$cfg['LeftFrameTableSeparator']の指示に応じ"
-"てテーブルを分割/入れ子するために使用されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル名自体はそのまま変わることありません。"
+"[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアスは、$cfg"
+"['LeftFrameTableSeparator']の指示に応じてテーブルを分割/入れ子するために使用"
+"されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル名自体"
+"はそのまま変わることありません。"
#: libraries/config/messages.inc.php:457
msgid "Display table comment instead of its name"
@@ -4024,7 +4132,9 @@ msgstr "ツールチップにテーブルのコメントを表示する"
#: libraries/config/messages.inc.php:459
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
-msgstr "使われているテーブルには印をして、テーブルがロックされていても可能であればデータベースを閲覧します。"
+msgstr ""
+"使われているテーブルには印をして、テーブルがロックされていても可能であれば"
+"データベースを閲覧します。"
#: libraries/config/messages.inc.php:460
msgid "Skip locked tables"
@@ -4038,9 +4148,9 @@ msgstr "SQL 検証を有効にするには必要です。"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "パスワード"
@@ -4048,7 +4158,9 @@ msgstr "パスワード"
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
-msgstr "[strong]注意:[/strong] PHP SOAP 拡張か PEAR SOAP がインストールされている必要があります。"
+msgstr ""
+"[strong]注意:[/strong] PHP SOAP 拡張か PEAR SOAP がインストールされている必"
+"要があります。"
#: libraries/config/messages.inc.php:469
msgid "Enable SQL Validator"
@@ -4058,10 +4170,12 @@ msgstr "SQL 検証を有効にする"
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
-msgstr "ユーザー名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/kbd])。"
+msgstr ""
+"ユーザ名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/"
+"kbd])。"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "ユーザ名"
@@ -4069,7 +4183,9 @@ msgstr "ユーザ名"
msgid ""
"Suggest a database name on the "Create Database" form (if "
"possible) or keep the text field empty"
-msgstr "「データベースの作成」フォームで(可能であれば)データベース名を提案します。そうでなければ、テキストフィールドを空欄にします。"
+msgstr ""
+"「データベースの作成」フォームで(可能であれば)データベース名を提案します。"
+"そうでなければ、テキストフィールドを空欄にします。"
#: libraries/config/messages.inc.php:473
msgid "Suggest new database name"
@@ -4089,10 +4205,11 @@ msgstr "Suhosin 警告"
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
-msgstr "編集モードでの textarea の1行の文字数。SQL クエリ用のでは 2 倍、クエリウィンドウに対しては 1.25 倍になります。"
+msgstr ""
+"編集モードでの textarea の1行の文字数。SQL クエリ用のでは 2 倍、クエリウィン"
+"ドウに対しては 1.25 倍になります。"
#: libraries/config/messages.inc.php:477
-#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "textarea の 1 行の文字数"
@@ -4100,7 +4217,9 @@ msgstr "textarea の 1 行の文字数"
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
-msgstr "編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対しては 1.25 倍になります。"
+msgstr ""
+"編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対"
+"しては 1.25 倍になります。"
#: libraries/config/messages.inc.php:479
msgid "Textarea rows"
@@ -4133,9 +4252,10 @@ msgid ""
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-"入力プロキシは「[kbd]IPアドレス: 信頼された HTTP ヘッダ[/kbd]」と記述します。以下の例は、phpMyAdmin は IP アドレス "
-"1.2.3.4 のプロキシから HTTP_X_FORWARDED_FOR (X-Forwarded-For) "
-"ヘッダを信頼するように指定することになります。[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
+"入力プロキシは「[kbd]IPアドレス: 信頼された HTTP ヘッダ[/kbd]」と記述します。"
+"以下の例は、phpMyAdmin は IP アドレス 1.2.3.4 のプロキシから "
+"HTTP_X_FORWARDED_FOR (X-Forwarded-For) ヘッダを信頼するように指定することにな"
+"ります。[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
#: libraries/config/messages.inc.php:489
msgid "List of trusted proxies for IP allow/deny"
@@ -4161,7 +4281,9 @@ msgstr "データベース検索を使用する"
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
-msgstr "無効にすると、右端のチェックボックスに関係なく、ユーザーが以下のオプションを設定することはできません。"
+msgstr ""
+"無効にすると、右端のチェックボックスに関係なく、ユーザが以下のオプションを設"
+"定することはできません。"
#: libraries/config/messages.inc.php:495
msgid "Enable the Developer tab in settings"
@@ -4173,14 +4295,15 @@ msgid ""
"libraries/import.lib.php for defaults on how many queries a statement may "
"contain."
msgstr ""
-"マルチクエリにおいてそれぞれのクエリが影響を与えた行数を表示します。デフォルトでは表示されます。どのように複数のクエリに表示を含めるかは、ソース "
+"マルチクエリにおいてそれぞれのクエリが影響を与えた行数を表示します。デフォル"
+"トでは表示されます。どのように複数のクエリに表示を含めるかは、ソース "
"libraries/import.lib.php を参照してください。"
#: libraries/config/messages.inc.php:497
msgid "Verbose multiple statements"
msgstr "マルチクエリの冗長表示"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "バージョンアップの確認"
@@ -4201,8 +4324,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-"インポートおよびエクスポートの操作に対して "
-"[a@http://ja.wikipedia.org/wiki/ZIP_(ファイルフォーマット)]ZIP[/a] 圧縮を有効にします。"
+"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/"
+"ZIP_(ファイルフォーマット)]ZIP[/a] 圧縮を有効にします。"
#: libraries/config/messages.inc.php:502
msgid "ZIP"
@@ -4210,7 +4333,7 @@ msgstr "ZIP"
#: libraries/config/setup.forms.php:41
msgid "Config authentication"
-msgstr "Config認証"
+msgstr "Config 認証"
#: libraries/config/setup.forms.php:45
msgid "Cookie authentication"
@@ -4218,7 +4341,7 @@ msgstr "クッキー認証"
#: libraries/config/setup.forms.php:48
msgid "HTTP authentication"
-msgstr "HTTP認証"
+msgstr "HTTP 認証"
#: libraries/config/setup.forms.php:51
msgid "Signon authentication"
@@ -4227,7 +4350,7 @@ msgstr "サインオン認証"
#: libraries/config/setup.forms.php:240
#: libraries/config/user_preferences.forms.php:144 libraries/import/ldi.php:34
msgid "CSV using LOAD DATA"
-msgstr "LOAD DATA する CSV"
+msgstr "LOAD DATA 文を使用した CSV の読み込み"
#: libraries/config/setup.forms.php:249 libraries/config/setup.forms.php:343
#: libraries/config/user_preferences.forms.php:152
@@ -4258,7 +4381,7 @@ msgstr "簡易"
#: libraries/config/setup.forms.php:266
#: libraries/config/user_preferences.forms.php:169
msgid "Custom"
-msgstr "カスタム"
+msgstr "詳細"
#: libraries/config/setup.forms.php:287
#: libraries/config/user_preferences.forms.php:189
@@ -4329,7 +4452,7 @@ msgstr "イベント"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "名前"
@@ -4352,8 +4475,8 @@ msgid "Designer"
msgstr "デザイナ"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "特権"
@@ -4365,7 +4488,7 @@ msgstr "ルーチン"
msgid "Return type"
msgstr "返り値の種類"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4385,23 +4508,23 @@ msgstr "サーバが応答しません"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "詳細..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "パスワードを変更する"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "パスワードなし"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "もう一度入力してください"
@@ -4423,7 +4546,7 @@ msgid "Create"
msgstr "作成"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "特権なし"
@@ -4443,7 +4566,6 @@ msgstr ""
"してください!"
#: libraries/display_export.lib.php:87
-#| msgid "Allows locking tables for the current thread."
msgid "Exporting databases from the current server"
msgstr "現在のサーバからデータベースをエクスポート"
@@ -4503,7 +4625,6 @@ msgstr "出力:"
#: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214
#, php-format
-#| msgid "Save on server in %s directory"
msgid "Save on server in the directory %s"
msgstr "サーバ上のディレクトリ %s に保存する"
@@ -4529,17 +4650,15 @@ msgstr "、@TABLE@ はテーブル名に"
#: libraries/display_export.lib.php:237
#, php-format
-#| msgid ""
-#| "This value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "formatting strings. Additionally the following transformations will "
-#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
-"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用することができます。また、埋め込み変数変換も行われます(%"
-"3$s変換されます。)。その他のテキストはそのまま使われます。詳細については、%4$sFAQ%5$s を参照してください。"
+"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用"
+"することができます。また、埋め込み変数変換も行われます(%3$s変換されま"
+"す。)。その他のテキストはそのまま使われます。詳細については、%4$sFAQ%5$s を"
+"参照してください。"
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4556,7 +4675,7 @@ msgstr "圧縮:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "なし"
@@ -4589,7 +4708,9 @@ msgstr "フォーマット特有のオプション:"
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
-msgstr "下にスクロールして選択したフォーマットのオプションで必要事項を記入し、他のフォーマットのオプションは無視してください。"
+msgstr ""
+"下にスクロールして選択したフォーマットのオプションで必要事項を記入し、他の"
+"フォーマットのオプションは無視してください。"
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
msgid "Encoding Conversion:"
@@ -4601,16 +4722,21 @@ msgid ""
"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
"browsers."
msgstr ""
+"アップロードされているファイルが最大許容サイズよりもおそらく大きい、もしく"
+"は、WebKit がベースのブラウザ (Safari、Google Chrome、Arora など) の既知のバ"
+"グです。"
#: libraries/display_import.lib.php:76
msgid "The file is being processed, please be patient."
-msgstr ""
+msgstr "ファイルが処理されています。しばらくお待ちください。"
#: libraries/display_import.lib.php:98
msgid ""
"Please be patient, the file is being uploaded. Details about the upload are "
"not available."
msgstr ""
+"しばらくお待ちください。ファイルがアップロードされています。アップロードに関"
+"する機能は利用できません。"
#: libraries/display_import.lib.php:129
msgid "Importing into the current server"
@@ -4659,17 +4785,14 @@ msgstr ""
"直前のインポートはタイムアウトしました。再送信すると位置 %d から再開されます"
#: libraries/display_import.lib.php:221
-#| msgid ""
-#| "Allow the interruption of an import in case the script detects it is "
-#| "close to the PHP timeout limit. This might be good way to import large "
-#| "files, however it can break transactions."
msgid ""
"Allow the interruption of an import in case the script detects it is close "
"to the PHP timeout limit. (This might be good way to import large files, "
"however it can break transactions.)"
msgstr ""
-"制限時間が近くなったときにスクリプト側でインポートを中断できるようにします。(大きなファイルをインポートする場合には便利ですが、トランザクションが"
-"壊れることもあります。)"
+"制限時間が近くなったときにスクリプト側でインポートを中断できるようにします。"
+"(大きなファイルをインポートする場合には便利ですが、トランザクションが壊れ"
+"ることもあります。)"
#: libraries/display_import.lib.php:228
msgid "Number of rows to skip, starting from the first row:"
@@ -4728,7 +4851,7 @@ msgstr "キーでソート"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "オプション"
@@ -4761,62 +4884,62 @@ msgstr "BLOB の内容を表示する"
msgid "Browser transformation"
msgstr "ブラウザ変換機能"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "コピー"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "行を削除しました"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "停止"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "行/クエリ"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "表示中の列"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "合計"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "クエリの実行時間 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "変更"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "クエリ結果操作"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "印刷用画面 (全テキストを含む)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "グラフで表示する"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "ビューを作成"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "リンク先が見つかりません"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "バージョン情報"
@@ -4840,7 +4963,9 @@ msgstr "自動拡張時に追加されるテーブルの大きさ"
msgid ""
" The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
-msgstr "スペースがいっぱいになったときに自動的にテーブルを拡張する場合に追加されるテーブルの大きさ。"
+msgstr ""
+"スペースがいっぱいになったときに自動的にテーブルを拡張する場合に追加される"
+"テーブルの大きさ。"
#: libraries/engines/innodb.lib.php:34
msgid "Buffer pool size"
@@ -5002,9 +5127,6 @@ msgid "Garbage Threshold"
msgstr "ガベージ閾値"
#: libraries/engines/pbms.lib.php:31
-#| msgid ""
-#| "The percentage of garbage in a data log file before it is compacted. This "
-#| "is a value between 1 and 99. The default is 50."
msgid "The percentage of garbage in a repository file before it is compacted."
msgstr "格納ファイルのガベージが何%になったら圧縮するか。"
@@ -5018,6 +5140,8 @@ msgid ""
"The port for the PBMS stream-based communications. Setting this value to 0 "
"will disable HTTP communication with the daemon."
msgstr ""
+"PBMS ストリームに基づいた通信用のポートです。この値を 0 に設定すると、デーモ"
+"ンとの HTTP 通信を無効にします。"
#: libraries/engines/pbms.lib.php:40
msgid "Repository Threshold"
@@ -5029,7 +5153,8 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
-"BLOB の格納ファイルの最大サイズです。単位には、Kb、MB、GB を使用することができます。単位が指定されなかった場合には、バイト値と見なされます。"
+"BLOB の格納ファイルの最大サイズです。単位には、Kb、MB、GB を使用することがで"
+"きます。単位が指定されなかった場合には、バイト値と見なされます。"
#: libraries/engines/pbms.lib.php:45
msgid "Temp Blob Timeout"
@@ -5040,11 +5165,11 @@ msgid ""
"The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed "
"after this time, unless they are referenced by a record in the database."
msgstr ""
-"一時的な BLOB の有効期間(秒)。アップロードされた BLOB "
-"データはこの時間を経過した後に削除されますが、データベース内のレコードで参照されている場合はこの限りではありません。"
+"一時的な BLOB の有効期間(秒)。アップロードされた BLOB データはこの時間を経"
+"過した後に削除されますが、データベース内のレコードで参照されている場合はこの"
+"限りではありません。"
#: libraries/engines/pbms.lib.php:50
-#| msgid "Log file threshold"
msgid "Temp Log Threshold"
msgstr "一時ログ閾値"
@@ -5054,8 +5179,8 @@ msgid ""
"indicate the unit of the value. A value in bytes is assumed when no unit is "
"specified."
msgstr ""
-"一時的な BLOB ログファイルの最大サイズです。単位には、Kb、MB、GB "
-"を使用することができます。単位が指定されなかった場合には、バイト値と見なされます。"
+"一時的な BLOB ログファイルの最大サイズです。単位には、Kb、MB、GB を使用するこ"
+"とができます。単位が指定されなかった場合には、バイト値と見なされます。"
#: libraries/engines/pbms.lib.php:55
msgid "Max Keep Alive"
@@ -5066,8 +5191,9 @@ msgid ""
"The timeout for inactive connection with the keep-alive flag set. After this "
"time the connection will be closed. The time-out is in milliseconds (1/1000)."
msgstr ""
-"接続維持フラグをセットして、非アクティブな接続に対してのタイムアウトを設定します。この時間経過した後に接続が閉じられます。時間の単位はミリ秒 "
-"(1/1000) です。"
+"接続維持フラグをセットして、非アクティブな接続に対してのタイムアウトを設定し"
+"ます。この時間経過した後に接続が閉じられます。時間の単位はミリ秒 (1/1000) で"
+"す。"
#: libraries/engines/pbms.lib.php:60
msgid "Metadata Headers"
@@ -5078,8 +5204,8 @@ msgid ""
"A \":\" delimited list of metadata headers to be used to initialize the "
"pbms_metadata_header table when a database is created."
msgstr ""
-"「:」で区切られたメタデータヘッダのリスト。データベースが作成されたときに、pbms_metadata_header "
-"テーブルを初期化するために使われます。"
+"「:」で区切られたメタデータヘッダのリスト。データベースが作成されたときに、"
+"pbms_metadata_header テーブルを初期化するために使われます。"
#: libraries/engines/pbms.lib.php:94
#, php-format
@@ -5087,20 +5213,20 @@ msgid ""
"Documentation and further information about PBMS can be found on %sThe "
"PrimeBase Media Streaming home page%s."
msgstr ""
+"PBMS に関するドキュメントおよび詳細な情報は、%sPrimeBase Media Streaming オ"
+"フィシャルサイト%sにあります。"
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
-#, fuzzy
-#| msgid "Relations"
msgid "Related Links"
-msgstr "リレーション"
+msgstr "関連リンク"
#: libraries/engines/pbms.lib.php:98
msgid "The PrimeBase Media Streaming Blog by Barry Leslie"
-msgstr ""
+msgstr "Barry Leslie 氏による PrimeBase Media Streaming ブログ"
#: libraries/engines/pbms.lib.php:99
msgid "PrimeBase XT Home Page"
-msgstr ""
+msgstr "PrimeBase XT オフィシャルサイト"
#: libraries/engines/pbxt.lib.php:22
msgid "Index cache size"
@@ -5252,17 +5378,19 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
+"PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ"
+"ト%sにあります。"
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
-msgstr ""
+msgstr "Paul McCullagh 氏による PrimeBase XT ブログ"
#: libraries/engines/pbxt.lib.php:130
msgid "The PrimeBase Media Streaming (PBMS) home page"
-msgstr ""
+msgstr "PrimeBase Media Streaming (PBMS) オフィシャルサイト"
#: libraries/export/csv.php:21 libraries/import/csv.php:27
msgid "Columns separated with:"
@@ -5325,18 +5453,15 @@ msgstr "テーブル @TABLE@ の構造"
#: libraries/export/latex.php:47 libraries/export/odt.php:39
#: libraries/export/sql.php:87
-#| msgid "Transformation options"
msgid "Object creation options"
msgstr "生成オプション"
#: libraries/export/latex.php:51 libraries/export/latex.php:75
-#| msgid "Table caption"
msgid "Table caption (continued)"
msgstr "テーブルのキャプション(続き)"
#: libraries/export/latex.php:56 libraries/export/odt.php:42
#: libraries/export/sql.php:40
-#| msgid "Disable foreign key checks"
msgid "Display foreign key relationships"
msgstr "外部キーリレーションシップの表示"
@@ -5353,9 +5478,9 @@ msgstr "MIME タイプの表示"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "ホスト"
@@ -5366,7 +5491,7 @@ msgid "Generation Time"
msgstr "生成時間"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "サーバのバージョン"
@@ -5377,7 +5502,7 @@ msgstr "PHP のバージョン"
#: libraries/export/mediawiki.php:15
msgid "MediaWiki Table"
-msgstr ""
+msgstr "MediaWiki テーブル"
#: libraries/export/pdf.php:17
msgid "PDF"
@@ -5393,16 +5518,17 @@ msgstr "レポートのタイトル:"
#: libraries/export/php_array.php:16
msgid "PHP array"
-msgstr ""
+msgstr "PHP 配列"
#: libraries/export/sql.php:33
msgid ""
"Display comments (includes info such as export timestamp, PHP version, "
"and server version)"
-msgstr "コメントの表示(エクスポート日時、PHP や サーバ のバージョンなどの情報が含まれます)"
+msgstr ""
+"コメントの表示(エクスポート日時、PHP や サーバ のバージョンなどの情報が含"
+"まれます)"
#: libraries/export/sql.php:35
-#| msgid "Add custom comment into header (\\n splits lines)"
msgid "Additional custom header comment (\\n splits lines):"
msgstr ""
"ヘッダにカスタムコメントを追加 (\n"
@@ -5422,12 +5548,10 @@ msgstr "他のデータベースシステムまたは古い MySQL サーバと
#: libraries/export/sql.php:72 libraries/export/sql.php:105
#: libraries/export/sql.php:107
#, php-format
-#| msgid "Statements"
msgid "Add %s statement"
msgstr "%s コマンドの追加"
#: libraries/export/sql.php:91
-#| msgid "Statements"
msgid "Add statements:"
msgstr "追加コマンド:"
@@ -5439,7 +5563,9 @@ msgstr "CREATE TABLE オプション:"
msgid ""
"Enclose table and field names with backquotes (Protects field and table "
"names formed with special characters or keywords)"
-msgstr "逆クォートでテーブルやフィールドの名前を囲む (特殊な文字やキーワードを含むフィールド名やテーブル名を保護します)"
+msgstr ""
+"逆クォートでテーブルやフィールドの名前を囲む (特殊な文字やキーワードを含む"
+"フィールド名やテーブル名を保護します)"
#: libraries/export/sql.php:136
msgid "Instead of INSERT statements, use:"
@@ -5467,8 +5593,9 @@ msgid ""
" Example: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES "
"(1,2,3)"
msgstr ""
-"全ての INSERT コマンドにカラム名を含める
例: "
-"INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)"
+"全ての INSERT コマンドにカラム名を含める
"
+" 例: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)"
+"code>"
#: libraries/export/sql.php:155
msgid ""
@@ -5476,8 +5603,8 @@ msgid ""
" Example: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), "
"(7,8,9)"
msgstr ""
-"全ての INSERT コマンドを複数行挿入で行う
例: "
-"INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)"
+"全ての INSERT コマンドを複数行挿入で行う
"
+" 例: INSERT INTO tbl_name VALUES (1,2,3), (4,5,6), (7,8,9)"
#: libraries/export/sql.php:156
msgid ""
@@ -5492,22 +5619,23 @@ msgid ""
"neither of the above
Example: INSERT INTO "
"tbl_name VALUES (1,2,3)"
msgstr ""
-"上のどちらでもない
例: INSERT INTO tbl_name VALUES "
-"(1,2,3)"
+"上のどちらでもない
例: INSERT INTO tbl_name "
+"VALUES (1,2,3)"
#: libraries/export/sql.php:167
msgid ""
"Dump binary columns in hexadecimal notation (for example, \"abc\" becomes "
"0x616263)"
-msgstr "16進表記でバイナリカラムをダンプする(例えば、\"abc\" を 0x616263)"
+msgstr ""
+"16進表記でバイナリカラムをダンプする(例えば、\"abc\" を 0x616263)"
#: libraries/export/sql.php:171
msgid ""
"Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and "
"reloaded between servers in different time zones)"
msgstr ""
-"TIMESTAMP のカラムを "
-"UTC(協定世界時)でダンプする(ダンプするサーバと読み込ませるサーバのタイムゾーンが異なる場合に有効です。)"
+"TIMESTAMP のカラムを UTC(協定世界時)でダンプする(ダンプするサーバと読み"
+"込ませるサーバのタイムゾーンが異なる場合に有効です。)"
#: libraries/export/sql.php:209 libraries/export/xml.php:34
msgid "Procedures"
@@ -5592,7 +5720,8 @@ msgstr "名前をクリックすることで構造内容を表示します。"
#: libraries/import.lib.php:1143
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。"
+msgstr ""
+"「オプション」のリンクをクリックすることで対応する設定の変更が行えます。"
#: libraries/import.lib.php:1144
msgid "Edit its structure by following the \"Structure\" link"
@@ -5619,7 +5748,9 @@ msgstr "ビューに移動"
msgid ""
"The first line of the file contains the table column names (if this is "
"unchecked, the first line will become part of the data)"
-msgstr "ファイルの最初の行にテーブルのカラム名が含まれている。(これをチェックしなかった場合、最初の行はデータの一部と見なされます。)"
+msgstr ""
+"ファイルの最初の行にテーブルのカラム名が含まれている。(これをチェックしな"
+"かった場合、最初の行はデータの一部と見なされます。)"
#: libraries/import/csv.php:39
msgid ""
@@ -5627,8 +5758,9 @@ msgid ""
"database, list the corresponding column names here. Column names must be "
"separated by commas and not enclosed in quotations."
msgstr ""
-"ファイルの各行のデータがデータベースの同じ順序でない場合、対応するカラム名をここに記述します。カラム名は、カンマで区切る必要があり、引用符では囲みません"
-"。"
+"ファイルの各行のデータがデータベースの同じ順序でない場合、対応するカラム名を"
+"ここに記述します。カラム名は、カンマで区切る必要があり、引用符では囲みませ"
+"ん。"
#: libraries/import/csv.php:41
msgid "Column names: "
@@ -5645,7 +5777,9 @@ msgstr "CSV インポートのパラメータが不正です: %s"
msgid ""
"Invalid column (%s) specified! Ensure that columns names are spelled "
"correctly, separated by commas, and not enclosed in quotes."
-msgstr "指定されたカラム (%s) は無効です。カラム名のスペルが正しいか、カンマで区切られていないか、引用符で囲まれていないかを確認してください。"
+msgstr ""
+"指定されたカラム (%s) は無効です。カラム名のスペルが正しいか、カンマで区切ら"
+"れていないか、引用符で囲まれていないかを確認してください。"
#: libraries/import/csv.php:189 libraries/import/csv.php:436
#, php-format
@@ -5685,7 +5819,7 @@ msgstr "金額は単位を取り除く(例えば、$5.00 を 5.00)"
#: libraries/import/sql.php:32
msgid "SQL compatibility mode:"
-msgstr "SQL互換モード:"
+msgstr "SQL 互換モード:"
#: libraries/import/sql.php:42
msgid "Do not use AUTO_INCREMENT for zero values"
@@ -5695,7 +5829,9 @@ msgstr "値がゼロのものに対して AUTO_INCREMENT を使用
msgid ""
"The XML file specified was either malformed or incomplete. Please correct "
"the issue and try again."
-msgstr "指定された XML ファイルは、不完全もしくはフォーマットが正しくありません。問題を修正して再度試してみてください。"
+msgstr ""
+"指定された XML ファイルは、不完全もしくはフォーマットが正しくありません。問題"
+"を修正して再度試してみてください。"
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
@@ -5707,7 +5843,32 @@ msgstr "なし"
msgid "Convert to Kana"
msgstr "全角カナへ変換する"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "金"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "実行する"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "インデックスを追加する"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "変更なし"
@@ -5984,8 +6145,8 @@ msgid ""
"Enable advanced features in configuration file (config.inc.php"
"code>), for example by starting from config.sample.inc.php."
msgstr ""
-"設定ファイル (config.inc.php) "
-"で高度な機能を有効にします。config.sample.inc.php にある設定例をコピーするといいでしょう。"
+"設定ファイル (config.inc.php) で高度な機能を有効にします。"
+"config.sample.inc.php にある設定例をコピーするといいでしょう。"
#: libraries/relation.lib.php:156
msgid "Re-login to phpMyAdmin to load the updated configuration file."
@@ -6008,13 +6169,13 @@ msgid ""
"Make sure, you have unique server-id in your configuration file (my.cnf). If "
"not, please add the following line into [mysqld] section:"
msgstr ""
-"念のため、設定ファイル (my.cnf) 内でサーバーIDがユニークであるか確認してください。もしそうでないならば、[mysqld] "
-"セクションに以下の行を追加してください。"
+"念のため、設定ファイル (my.cnf) 内でサーバーIDがユニークであるか確認してくだ"
+"さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。"
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "ユーザ名"
@@ -6035,7 +6196,7 @@ msgstr "変数"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "値"
@@ -6055,34 +6216,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "スレーブレプリケーションのユーザ追加"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "すべてのユーザ"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "テキストフィールドの値を利用する"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "すべてのホスト"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "ローカル"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "このホスト"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "ホストテーブルを使う"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6146,7 +6307,7 @@ msgstr "属性"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "その他"
@@ -6155,12 +6316,10 @@ msgid "Create a page"
msgstr "新しいページを作成する"
#: libraries/schema/User_Schema.class.php:99
-#| msgid "Page number:"
msgid "Page name"
msgstr "ページ名"
#: libraries/schema/User_Schema.class.php:103
-#| msgid "Automatic layout"
msgid "Automatic layout based on"
msgstr "自動レイアウト、チェックしたのに基づく"
@@ -6177,7 +6336,6 @@ msgid "Please choose a page to edit"
msgstr "編集するページを選択してください"
#: libraries/schema/User_Schema.class.php:153
-#| msgid "Select All"
msgid "Select page"
msgstr "ページを選択してください"
@@ -6186,7 +6344,6 @@ msgid "Select Tables"
msgstr "テーブルを選択してください"
#: libraries/schema/User_Schema.class.php:346
-#| msgid "Relational schema"
msgid "Display relational schema"
msgstr "リレーショナルスキーマを表示する"
@@ -6223,7 +6380,6 @@ msgid "Portrait"
msgstr "縦向き"
#: libraries/schema/User_Schema.class.php:394
-#| msgid "Creation"
msgid "Orientation"
msgstr "向き"
@@ -6244,12 +6400,12 @@ msgid "Toggle scratchboard"
msgstr "スクラッチボードを切り替える"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "言語ファイルが登録されていません: %1$s"
@@ -6322,7 +6478,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "データベース %s 上でクエリを実行する"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "クリア"
@@ -6354,10 +6510,6 @@ msgstr "デリミタ"
msgid " Show this query here again "
msgstr " 実行したクエリをここに表示する"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "実行する"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "表示のみ"
@@ -6366,7 +6518,7 @@ msgstr "表示のみ"
msgid "Location of the text file"
msgstr "テキストファイルの位置"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "ウェブサーバ上のアップロードディレクトリ"
@@ -6416,19 +6568,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "クエリの最後に逆クォートが自動的に追加されました!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "引用符が閉じていません"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "不正な識別子です"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "無効な句読点文字です"
@@ -6455,20 +6607,15 @@ msgid "Length/Values"
msgstr "長さ/値"
#: libraries/tbl_properties.inc.php:104
-#| msgid ""
-#| "If field type is \"enum\" or \"set\", please enter the values using this "
-#| "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") "
-#| "or a single quote (\"'\") amongst those values, precede it with a "
-#| "backslash (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 "
"a single quote (\"'\") amongst those values, precede it with a backslash "
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-"カラム種別が「enum」ないし「set」の場合の値の書式: 'a','b','c'...
バックスラッシュ(\"\\\")やシングルクォート(\"'\")を含める必要がある場合は ( \\\\xyz や a\\'b のように) "
-"その前にバックスラッシュを付けてください"
+"カラム種別が「enum」ないし「set」の場合の値の書式: 'a','b','c'...
バック"
+"スラッシュ(\"\\\")やシングルクォート(\"'\")を含める必要がある場合は ( \\"
+"\\xyz や a\\'b のように) その前にバックスラッシュを付けてください"
#: libraries/tbl_properties.inc.php:105
msgid ""
@@ -6480,7 +6627,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "インデックス"
@@ -6526,12 +6673,12 @@ msgid "As defined:"
msgstr "ユーザ定義"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "主"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "全文"
@@ -6545,7 +6692,7 @@ msgstr ""
"い"
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "ストレージエンジン"
@@ -6553,17 +6700,16 @@ msgstr "ストレージエンジン"
msgid "PARTITION definition"
msgstr "パーティションの定義"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "%s 個のカラムを追加する"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "最低ひとつはカラムを追加してください"
#: libraries/tbl_properties.inc.php:796
-#| msgid "Add a new User"
msgid "+ Add a new value"
msgstr "+ 新しい値を追加する"
@@ -6678,7 +6824,9 @@ msgstr ""
msgid ""
"Converts an (IPv4) Internet network address into a string in Internet "
"standard dotted format."
-msgstr "(IPv4) インターネットアドレスをインターネット標準ドット表記 (例:xxx.xxx.xxx.xxx) に変換する"
+msgstr ""
+"(IPv4) インターネットアドレスをインターネット標準ドット表記 (例:xxx.xxx.xxx."
+"xxx) に変換する"
#: libraries/transformations/text_plain__sql.inc.php:9
msgid "Formats text as SQL query with syntax highlighting."
@@ -6698,7 +6846,6 @@ msgstr ""
"詰めるときに前/後に補う省略記号です (デフォルトは ... です)"
#: libraries/user_preferences.inc.php:32
-#| msgid "General relation features"
msgid "Manage your settings"
msgstr "ユーザ設定の管理"
@@ -6713,7 +6860,7 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
"環境設定は、現在のセッションでのみ有効です。この設定を永続的に有効にするに"
-"は、%sphpMyAdminの設定保存場所%sが必要です。"
+"は、%sphpMyAdmin の設定保存場所%sが必要です。"
#: libraries/user_preferences.lib.php:142
msgid "Could not save configuration"
@@ -6724,8 +6871,8 @@ msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
msgstr ""
-"お使いのブラウザは、このドメインに対しての phpMyAdmin の設定を (Web Storage に) "
-"保存しています。現在のセッションにその設定を読み込んでもよろしいですか?"
+"お使いのブラウザは、このドメインに対しての phpMyAdmin の設定を (Web Storage "
+"に) 保存しています。現在のセッションにその設定を読み込んでもよろしいですか?"
#: libraries/zip_extension.lib.php:25
msgid "No files found inside ZIP archive!"
@@ -6736,74 +6883,73 @@ msgstr "ZIP アーカイブにファイルが含まれていません!"
msgid "Error in ZIP archive:"
msgstr "ZIP アーカイブにエラーがあります:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "一般設定"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL 接続の照合順序"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "外観の設定"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "詳細設定"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "プロトコルバージョン"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "ユーザ"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL の文字セット"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Web サーバ"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL クライアントのバージョン"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP 拡張"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP 情報"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin のオフィシャルサイト"
-#: main.php:231
-#| msgid "Attributes"
+#: main.php:214
msgid "Contribute"
msgstr "貢献するには"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "サポート"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "更新履歴"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6815,7 +6961,7 @@ msgstr ""
"ト設定で動作しているため不正アクセス可能な状態になっています。このセキュリ"
"ティホールはかならず閉ざしてください"
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6824,7 +6970,7 @@ msgstr ""
"PHP の設定で mbstring.func_overload が有効になっています。phpMyAdmin はこのオ"
"プションに対応していないため、データが破壊されることがあります!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6834,62 +6980,63 @@ msgstr ""
"いるようですが、mbstring 拡張がないと phpMyAdmin は文字列を正しく分割できない"
"ため予期しない結果になることがあります"
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
"validity configured in phpMyAdmin, because of this, your login will expire "
"sooner than configured in phpMyAdmin."
msgstr ""
-"お使いの PHP のパラメータ "
-"[a@http://php.net/manual/ja/session.configuration.php#ini.session.gc-"
-"maxlifetime@]session.gc_maxlifetime[/a] が、phpMyAdmin "
-"に設定されているクッキーの有効期間より短くなっています。このため、phpMyAdmin に設定されているよりも早くログインの期限が切れます。"
+"お使いの PHP のパラメータ [a@http://php.net/manual/ja/session.configuration."
+"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] が、phpMyAdmin に"
+"設定されているクッキーの有効期間より短くなっています。このため、phpMyAdmin に"
+"設定されているよりも早くログインの期限が切れます。"
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-"ログインクッキーの保存期間が、phpMyAdmin に設定されているクッキーの有効期間よりも短くなっています。このため、phpMyAdmin "
-"に設定されているよりも早くログインの期限が切れます。"
+"ログインクッキーの保存期間が、phpMyAdmin に設定されているクッキーの有効期間よ"
+"りも短くなっています。このため、phpMyAdmin に設定されているよりも早くログイン"
+"の期限が切れます。"
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"設定ファイルが秘密のパスフレーズ (blowfish_secret) を必要とするようになりまし"
"た"
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-"セットアップスクリプトで使用される [code]config[/code] ディレクトリが、まだ phpMyAdmin "
-"ディレクトリに存在しています。phpMyAdmin を設定し終えたら、それは削除するべきです。"
+"セットアップスクリプトで使用される [code]config[/code] ディレクトリが、まだ "
+"phpMyAdmin ディレクトリに存在しています。phpMyAdmin を設定し終えたら、それは"
+"削除するべきです。"
-#: main.php:313
+#: main.php:296
#, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. 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."
msgstr ""
-"phpMyAdmin の設定保存場所が完全に設定されていないため、いくつかの拡張機能が無効になっています。理由については%sこちら%sをご覧ください。"
+"phpMyAdmin の設定保存場所が完全に設定されていないため、いくつかの拡張機能が無"
+"効になっています。理由については%sこちら%sをご覧ください。"
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-"お使いのブラウザでは Javascript のサポートが不足しているか無効になっているので、phpMyAdmin "
-"のいくつかの機能が失われます。例えば、ナビゲーションフレームが自動的に更新されません。"
+"お使いのブラウザでは Javascript のサポートが不足しているか無効になっているの"
+"で、phpMyAdmin のいくつかの機能が失われます。例えば、ナビゲーションフレームが"
+"自動的に更新されません。"
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -6898,7 +7045,7 @@ msgstr ""
"お使いの PHP MySQL ライブラリのバージョン %s が MySQL サーバのバージョン %s "
"と異なります。これは予期しない不具合を起こす可能性があります。"
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6916,16 +7063,15 @@ msgid "Filter"
msgstr "フィルタ"
#: navigation.php:277
-#| msgid "table name"
msgid "filter tables by name"
msgstr "名前でテーブルをフィルタする"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "テーブルを作成"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "データベースを選択してください"
@@ -6978,7 +7124,6 @@ msgid "Import/Export coordinates for PDF schema"
msgstr "PDF スキーマの座標をインポート/エクスポートする"
#: pmd_general.php:120
-#| msgid "Submit Query"
msgid "Build Query"
msgstr "クエリを作成する"
@@ -7003,14 +7148,11 @@ msgid "Delete relation"
msgstr "リレーションを削除"
#: pmd_general.php:460 pmd_general.php:519
-#, fuzzy
-#| msgid "Relation deleted"
msgid "Relation operator"
-msgstr "リレーションを削除しました"
+msgstr "リレーション演算子"
#: pmd_general.php:470 pmd_general.php:529 pmd_general.php:652
#: pmd_general.php:769
-#| msgid "Export"
msgid "Except"
msgstr "以外"
@@ -7020,17 +7162,14 @@ msgid "subquery"
msgstr "サブクエリ"
#: pmd_general.php:480 pmd_general.php:576
-#| msgid "Rename table to"
msgid "Rename to"
msgstr "リネーム後の名前"
#: pmd_general.php:482 pmd_general.php:581
-#| msgid "User name"
msgid "New name"
msgstr "新しい名前"
#: pmd_general.php:485 pmd_general.php:700
-#| msgid "Create"
msgid "Aggregate"
msgstr "集計"
@@ -7041,10 +7180,8 @@ msgid "Operator"
msgstr "演算子"
#: pmd_general.php:810
-#, fuzzy
-#| msgid "Table options"
msgid "Active options"
-msgstr "テーブルオプション"
+msgstr "アクティブオプション"
#: pmd_help.php:26
msgid "To select relation, click :"
@@ -7126,10 +7263,10 @@ msgstr "修正を保存しました"
#: prefs_forms.php:78
msgid "Cannot save settings, submitted form contains errors"
-msgstr "設定を保存することはできません。送信された内容にエラーが含まれています。"
+msgstr ""
+"設定を保存することはできません。送信された内容にエラーが含まれています。"
#: prefs_manage.php:80
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not import configuration"
msgstr "設定がインポートできませんでした。"
@@ -7155,7 +7292,9 @@ msgstr "ブラウザ (Web Storage) から設定を読み込む"
#: prefs_manage.php:248
msgid "Settings will be imported from your browser's local storage."
-msgstr "設定をブラウザ (Web Storage) から読み込みます。ローカルの保存場所ですがクッキーではありません。"
+msgstr ""
+"設定をブラウザ (Web Storage) から読み込みます。ローカルの保存場所ですがクッ"
+"キーではありません。"
#: prefs_manage.php:254
msgid "You have no saved settings!"
@@ -7174,7 +7313,9 @@ msgstr "現在の設定とマージする"
msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
-msgstr "%sセットアップスクリプト%sを使用するなどして config.inc.php を変更することにより、より多くの設定を行うことができます。"
+msgstr ""
+"%sセットアップスクリプト%sを使用するなどして config.inc.php を変更することに"
+"より、より多くの設定を行うことができます。"
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -7182,7 +7323,9 @@ msgstr "ブラウザ (Web Storage) に保存する"
#: prefs_manage.php:306
msgid "Settings will be saved in your browser's local storage."
-msgstr "設定がブラウザ (Web Storage) に保存されます。ローカルの保存場所ですがクッキーではありません。"
+msgstr ""
+"設定がブラウザ (Web Storage) に保存されます。ローカルの保存場所ですがクッキー"
+"ではありません。"
#: prefs_manage.php:308
msgid "Existing settings will be overwritten!"
@@ -7299,164 +7442,164 @@ msgid "Includes all privileges except GRANT."
msgstr "GRANT 以外のすべての特権を付与する"
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "既存のテーブル構造の変更を許可する"
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "ストアドルーチンの修正と削除を許可する"
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "新しいデータベースやテーブルの作成を許可する"
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "ストアドルーチンの作成を許可する"
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "新しいテーブルの作成を許可する"
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "一時テーブルの作成を許可する"
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "ユーザアカウントの作成・削除・リネームを許可する"
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "新しいビューの作成を許可する"
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "データの削除を許可する"
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "データベースとテーブルの削除を許可す"
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "テーブルの削除を許可する"
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "イベントスケジューラにイベントを設定できるようにする"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "ストアドルーチンの実行を許可する"
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "データのインポート、エクスポートを許可する"
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr "特権テーブルのリロードなしのユーザ・特権の追加を許可する"
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "インデックスの作成、削除を許可する"
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "データの挿入、置換を許可する"
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "現在のスレッドのテーブルロックを許可する"
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "単位時間内に可能な新規接続回数を制限する"
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "単位時間内にサーバに送信可能なクエリ数を制限する"
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
"単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する"
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "ユーザの同時接続数を制限する"
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "全ユーザのプロセスを閲覧できるようにする"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "このバージョンの MySQL では無効です"
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "サーバ設定のリロード、サーバキャッシュのフラッシュを許可する"
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "スレーブ/マスタの照会を許可する"
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "レプリケーションスレーブでは有効にする必要があります"
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "データの読み込みを許可する"
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "データベース総一覧へのアクセスを許可する"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "SHOW CREATE VIEW クエリの実行を許可する"
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "サーバのシャットダウンを許可する"
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7467,12 +7610,12 @@ msgstr ""
"ります"
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "トリガの作成・削除を許可する"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "データの修正を許可する"
@@ -7485,229 +7628,231 @@ msgctxt "None privileges"
msgid "None"
msgstr "なし"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "テーブル固有の特権"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "注意: MySQL の特権名は英語で表示されます"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "グローバル特権"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "データベースに固有の特権"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "管理"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "グローバル特権"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "データベースに固有の特権"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "リソースの制限"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します"
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "ログイン情報"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "パスワードは変更しない"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "ユーザが存在しません"
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "ユーザ %s は既に存在します!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "新しいユーザを追加しました"
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s の特権を更新しました"
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s の特権を取り消しました"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s のパスワードは正しく変更されました"
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s を削除中です"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "削除するユーザが選択されていません!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "特権をリロードしています"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "選択したユーザを正しく削除しました"
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "特権を正常にリロードしました"
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "特権を編集"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "取り消し"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "すべて"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "ユーザ概略"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "権限委譲"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "新しいユーザを追加する"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "選択したユーザを削除する"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "特権をすべて取り消してユーザを削除する"
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "ユーザと同名のデータベースを削除する"
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "特権テーブルには選択したユーザがいません"
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "このカラムに固有の特権"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "データベースに特権を追加"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
-msgstr "_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてください。"
+msgstr ""
+"_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてくだ"
+"さい。"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "テーブルに特権を追加"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "ログイン情報の変更 / ユーザの複製"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "同じ特権を持つ新しいユーザを作る"
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "元のユーザも残す"
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr "ユーザテーブルから元のユーザを削除する"
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr "元のユーザの特権をすべて無効にしてから削除する"
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr "ユーザテーブルから元のユーザを削除し、特権をリロードする"
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "ユーザ専用データベース"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "なし"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "同名のデータベースを作成してすべての特権を与える"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "データベース "%s" への全ての特権を与える"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" にアクセスできるユーザ"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "グローバル"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "データベース固有"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "ワイルドカード"
@@ -7738,7 +7883,8 @@ msgstr "マスタ %s に接続していません"
#: server_replication.php:63
msgid ""
"Unable to read master log position. Possible privilege problem on master."
-msgstr "マスタのログの位置が読み込めません。マスター上の特権問題の可能性があります。"
+msgstr ""
+"マスタのログの位置が読み込めません。マスター上の特権問題の可能性があります。"
#: server_replication.php:69
msgid "Unable to change master"
@@ -7766,7 +7912,9 @@ msgstr "接続しているスレーブの表示"
msgid ""
"This server is not configured as master in a replication process. Would you "
"like to configure it?"
-msgstr "このサーバのレプリケーションプロセスには、マスタが設定されていません。設定を行いますか?"
+msgstr ""
+"このサーバのレプリケーションプロセスには、マスタが設定されていません。設定を行いますか?"
#: server_replication.php:215
msgid "Master configuration"
@@ -7780,9 +7928,12 @@ msgid ""
"ignore all databases by default and allow only certain databases to be "
"replicated. Please select the mode:"
msgstr ""
-"このサーバは、レプリケーションプロセスのマスタサーバーとして構成されていません。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全"
-"てのデータベースをレプリケーションするモード(データベースの大部分をレプリケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベースを"
-"無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よりいずれかのモードを選択してください。"
+"このサーバは、レプリケーションプロセスのマスタサーバーとして構成されていませ"
+"ん。以下のいずれかを選択できます。1つは、特定のデータベースを無視して残り全"
+"てのデータベースをレプリケーションするモード(データベースの大部分をレプリ"
+"ケーションする場合に便利です。)。もう1つは、デフォルトで全てのデータベース"
+"を無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よ"
+"りいずれかのモードを選択してください。"
#: server_replication.php:219
msgid "Replicate all databases; Ignore:"
@@ -7800,7 +7951,9 @@ msgstr "データベースを選択してください:"
msgid ""
"Now, add the following lines at the end of [mysqld] section in your my.cnf "
"and please restart the MySQL server afterwards."
-msgstr "すぐに、my.cnf の [mysqld] セクションの最後に以下の行を追加し、その後、MySQL サーバを再起動してください。"
+msgstr ""
+"すぐに、my.cnf の [mysqld] セクションの最後に以下の行を追加し、その後、MySQL "
+"サーバを再起動してください。"
#: server_replication.php:228
msgid ""
@@ -7808,8 +7961,9 @@ msgid ""
"should see a message informing you, that this server is configured as "
"master"
msgstr ""
-"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その後、このサーバーがマスタとして設定されていることを知らせる"
-"メッセージが表示されます。"
+"MySQL サーバが再起動したら、「実行する」ボタンをクリックしてください。その"
+"後、このサーバーがマスタとして設定されていることを知らせるメッセージが"
+"表示されます。"
#: server_replication.php:291
msgid "Slave SQL Thread not running!"
@@ -7822,7 +7976,9 @@ msgstr "スレーブの IO スレッドが実行していません!"
#: server_replication.php:303
msgid ""
"Server is configured as slave in a replication process. Would you like to:"
-msgstr "サーバはレプリケーションプロセスではスレーブとして設定されています。どのようにしたいですか?"
+msgstr ""
+"サーバはレプリケーションプロセスではスレーブとして設定されています。どのよう"
+"にしたいですか?"
#: server_replication.php:306
msgid "See slave status table"
@@ -7849,7 +8005,6 @@ msgid "Reset slave"
msgstr "スレーブのリセット"
#: server_replication.php:326
-#| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "SQL スレッドのみ開始"
@@ -7858,7 +8013,6 @@ msgid "Stop SQL Thread only"
msgstr "SQL スレッドのみ停止"
#: server_replication.php:331
-#| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "IO スレッドのみ開始"
@@ -7872,7 +8026,8 @@ msgstr "管理エラー:"
#: server_replication.php:340
msgid "Skipping errors might lead into unsynchronized master and slave!"
-msgstr "エラーのスキップは、マスタとスレーブの同期を切ることになるかもしれません!"
+msgstr ""
+"エラーのスキップは、マスタとスレーブの同期を切ることになるかもしれません!"
#: server_replication.php:342
msgid "Skip current error"
@@ -7916,8 +8071,9 @@ msgid ""
"to increase the tmp_table_size value to cause temporary tables to be memory-"
"based instead of disk-based."
msgstr ""
-"ステートメント実行中にサーバがディスク上に自動生成した一時テーブル数。Created_tmp_disk_tables の値が大きい場合は "
-"tmp_table_size の値を増やしてディスク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。"
+"ステートメント実行中にサーバがディスク上に自動生成した一時テーブル数。"
+"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ"
+"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。"
#: server_status.php:49
msgid "How many temporary files mysqld has created."
@@ -8593,15 +8749,21 @@ msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)"
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
-msgstr "この MySQL サーバは、レプリケーションプロセスのマスタとスレーブとして動作しています。"
+msgstr ""
+"この MySQL サーバは、レプリケーションプロセスのマスタとス"
+"レーブとして動作しています。"
#: server_status.php:488
msgid "This MySQL server works as master in replication process."
-msgstr "この MySQL サーバは、レプリケーションプロセスのマスタとして動作しています。"
+msgstr ""
+"この MySQL サーバは、レプリケーションプロセスのマスタとして動作"
+"しています。"
#: server_status.php:490
msgid "This MySQL server works as slave in replication process."
-msgstr "この MySQL サーバは、レプリケーションプロセスのスレーブとして動作しています。"
+msgstr ""
+"この MySQL サーバは、レプリケーションプロセスのスレーブとして動"
+"作しています。"
#: server_status.php:492
msgid ""
@@ -8783,13 +8945,11 @@ msgid "Enter manually"
msgstr "手動で入力する"
#: server_synchronize.php:1138
-#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "現在の接続"
#: server_synchronize.php:1167
#, php-format
-#| msgid "Configuration"
msgid "Configuration: %s"
msgstr "設定:%s"
@@ -8817,7 +8977,7 @@ msgstr "セッション値"
msgid "Global value"
msgstr "グローバル値"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "ダウンロードする"
@@ -8831,9 +8991,10 @@ msgid ""
"level directory as described in [a@Documentation.html#setup_script]"
"documentation[/a]. Otherwise you will be only able to download or display it."
msgstr ""
-"[a@../Documentation.html#setup_script]ドキュメント[/a]で説明されるように phpMyAdmin "
-"のトップレベルディレクトリにウェブサーバで書き込める [em]config[/em] "
-"フォルダを作成してください。そうしない場合は、ダウンロードするか表示するかのみになります。"
+"[a@../Documentation.html#setup_script]ドキュメント[/a]で説明されるように "
+"phpMyAdmin のトップレベルディレクトリにウェブサーバで書き込める [em]config[/"
+"em] フォルダを作成してください。そうしない場合は、ダウンロードするか表示する"
+"かのみになります。"
#: setup/frames/index.inc.php:57
msgid ""
@@ -8856,55 +9017,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "セキュリティで保護されていない接続"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "設定の保存場所"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "一般"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "隠れているメッセージを表示する (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "設定するサーバがありません"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "新しいサーバ"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "デフォルト言語"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "ユーザに選択させる"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- 無し -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "デフォルトサーバ"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "改行コード"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "表示する"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "読み込む"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin のホームページ"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "寄付"
@@ -8940,20 +9113,23 @@ msgstr "フォームを表示する"
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
+"URL ラッパ、cURL、いずれも利用できません。バージョンチェックが行えません。"
#: setup/lib/index.lib.php:126
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
+"バージョンの読み込みに失敗しました。オフラインであるか、アップグレードサーバ"
+"が応答しません。"
#: setup/lib/index.lib.php:143
msgid "Got invalid version string from server"
-msgstr ""
+msgstr "サーバから取得した無効なバージョン文字列"
#: setup/lib/index.lib.php:150
msgid "Unparsable version string"
-msgstr ""
+msgstr "解析できないバージョン文字列"
#: setup/lib/index.lib.php:162
#, php-format
@@ -8961,6 +9137,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
+"Git バージョンを使用していて、[kbd]git pull[/kbd] 実行しています(^^)[br]最新"
+"の安定バージョンは %s で、%s にリリースされています。"
#: setup/lib/index.lib.php:165
msgid "No newer stable version is available"
@@ -8974,6 +9152,11 @@ msgid ""
"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 ""
+"この%sオプション%sは無効にするべきです。そうしなければ、いずれかの MySQL サー"
+"バへのブルートフォース(しらみつぶし)ログインによる攻撃を許すことになりま"
+"す。これが必要と思われる場合には、%s信頼されたプロキシリスト%sを使用します。"
+"しかしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接"
+"続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
#: setup/lib/index.lib.php:252
msgid ""
@@ -8981,8 +9164,9 @@ msgid ""
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-"blowfish 暗号のパスフレーズなしで cookie 認証が有効にされましたので、パスフレーズを自動的に生成しました。パスフレーズはクッキーを暗号化"
-"するために使用されますが、管理者がそれを覚えておく必要はありません。"
+"blowfish 暗号のパスフレーズなしで cookie 認証が有効にされましたので、パスフ"
+"レーズを自動的に生成しました。パスフレーズはクッキーを暗号化するために使用さ"
+"れますが、管理者がそれを覚えておく必要はありません。"
#: setup/lib/index.lib.php:253
#, php-format
@@ -8998,6 +9182,8 @@ msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
+"このディレクトリが、他のユーザにより外部からアクセスも読み書きできてしまうこ"
+"とを防ぐために、この値は二重にチェックするべきです。"
#: setup/lib/index.lib.php:256
#, php-format
@@ -9021,8 +9207,9 @@ msgid ""
"invalidation if %ssession.gc_maxlifetime%s is lower than its value "
"(currently %d)."
msgstr ""
-"%sログインクッキーの有効期間%sが 1440 秒を超えています。%ssession.gc_maxlifetime%s がその値 (現在 %d) "
-"より低い場合、セッションがランダムに無効化される原因となります。"
+"%sログインクッキーの有効期間%sが 1440 秒を超えています。%ssession."
+"gc_maxlifetime%s がその値 (現在 %d) より低い場合、セッションがランダムに無効"
+"化される原因となります。"
#: setup/lib/index.lib.php:262
#, php-format
@@ -9030,8 +9217,9 @@ 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 ""
-"%sログインクッキーの有効期間%sは最大で 1800 秒 (30 分) に設定する必要があります。1800 "
-"より大きい値は、偽装などのセキュリティリスクを引き起こす可能性があります。"
+"%sログインクッキーの有効期間%sは最大で 1800 秒 (30 分) に設定する必要がありま"
+"す。1800 より大きい値は、偽装などのセキュリティリスクを引き起こす可能性があり"
+"ます。"
#: setup/lib/index.lib.php:264
#, php-format
@@ -9039,8 +9227,9 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"cookie 認証を使用していて且つ%sログインクッキーの保存期間%sを 0 にしていない場合、%sログインクッキーの有効期間%"
-"sは保存期間の値以下に設定する必要があります。"
+"cookie 認証を使用していて且つ%sログインクッキーの保存期間%sを 0 にしていない"
+"場合、%sログインクッキーの有効期間%sは保存期間の値以下に設定する必要がありま"
+"す。"
#: setup/lib/index.lib.php:266
#, php-format
@@ -9050,9 +9239,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%sホスト認証%s設定および%s信頼されたプロキシのリスト"
-"%s)を使用してください。しかしながら、ユーザー数千人もいるような ISP に所属している、使用している、接続されている場合には、IP "
-"アドレスを基にした保護は信頼性が高いとはいえません。"
+"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%"
+"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し"
+"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続"
+"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
#: setup/lib/index.lib.php:268
#, php-format
@@ -9063,10 +9253,11 @@ msgid ""
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
-"[kbd]config[/kbd] "
-"認証タイプを設定し、自動ログインのためにユーザ名とパスワードを含めています。このことは、実働しているホストにとって望ましい方法とはいえません。誰かに "
-"phpMyAdmin の URL を知られるもしくは推測されると、管理ツールである phpMyAdmin に直接アクセスできてしまいます。ですから、%"
-"s認証タイプ%sを [kbd]cookie[/kbd] か [kbd]http[/kbd] に設定してください。"
+"[kbd]config[/kbd] 認証タイプを設定し、自動ログインのためにユーザ名とパスワー"
+"ドを含めています。このことは、実働しているホストにとって望ましい方法とはいえ"
+"ません。誰かに phpMyAdmin の URL を知られるもしくは推測されると、管理ツールで"
+"ある phpMyAdmin に直接アクセスできてしまいます。ですから、%s認証タイプ%sを "
+"[kbd]cookie[/kbd] か [kbd]http[/kbd] に設定してください。"
#: setup/lib/index.lib.php:270
#, php-format
@@ -9096,11 +9287,11 @@ msgstr "パスワードなしでサーバへの接続が許されています。
#: setup/lib/index.lib.php:351
msgid "Key is too short, it should have at least 8 characters."
-msgstr ""
+msgstr "キーが短すぎます。少なくとも 8 文字は必要です。"
#: setup/lib/index.lib.php:358
msgid "Key should contain letters, numbers [em]and[/em] special characters."
-msgstr ""
+msgstr "キーは文字、数字[em]そして[/em]特殊文字を含める必要があります。"
#: sql.php:87 tbl_change.php:253 tbl_select.php:26 tbl_select.php:27
#: tbl_select.php:30 tbl_select.php:33
@@ -9110,7 +9301,7 @@ msgstr "参照されている値を表示する"
#: sql.php:163
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
-msgstr ""
+msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。"
#: sql.php:600 tbl_replace.php:387
#, php-format
@@ -9126,7 +9317,6 @@ msgid "Showing SQL query"
msgstr "SQL クエリを表示"
#: sql.php:622
-#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "検証した SQL 文"
@@ -9148,63 +9338,62 @@ msgstr "テーブル %1$s を変更しました"
msgid "Function"
msgstr "関数"
-#: tbl_change.php:755
-#| msgid " Because of its length,
this field might not be editable "
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " 長さによってはこのカラムを
修正できなくなる場合もあります。"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "BLOB 格納への参照を削除する"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " バイナリ - 編集不可"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "BLOB 格納へアップロードする"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "新しい行として挿入する"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "新しい行として挿入し、エラーは無視する"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "挿入クエリ文を表示する"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "続いて"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "前のページに戻る"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "新しいレコードを追加する"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "このページに戻る"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "次の行を編集する"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自"
"由に移動できます"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "%s 行づつ挿入を行う"
@@ -9214,15 +9403,12 @@ msgid "Chart generated successfully."
msgstr "グラフが正常に作成されました。"
#: tbl_chart.php:59
-#| msgid ""
-#| "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
-#| "3.11[/a]"
msgid ""
"The result of this query can't be used for a chart. See [a@./Documentation."
"html#faq6_29@Documentation]FAQ 6.29[/a]"
msgstr ""
-"このクエリの結果は、グラフに使用することができませんでした。[a@./Documentation.html#faq6_29@Documentation]"
-"FAQ 6.29[/a] を参照してください。"
+"このクエリの結果は、グラフに使用することができませんでした。[a@./"
+"Documentation.html#faq6_29@Documentation]FAQ 6.29[/a] を参照してください。"
#: tbl_chart.php:90
msgid "Width"
@@ -9288,12 +9474,15 @@ msgstr "連結したイメージにする"
msgid ""
"For compatibility reasons the chart image is segmented by default, select "
"this to draw the whole chart in one image."
-msgstr "互換性の理由から、グラフイメージはデフォルトで分割されています。1つのイメージでグラフ全体を描画する場合、チェックしてください。"
+msgstr ""
+"互換性の理由から、グラフイメージはデフォルトで分割されています。1つのイメージ"
+"でグラフ全体を描画する場合、チェックしてください。"
#: tbl_chart.php:166
msgid ""
"When drawing a radar chart all values are normalized to a range [0..10]."
msgstr ""
+"レーダグラフを描画する時は、全ての値が範囲 [0..10] に正規化されています。"
#: tbl_chart.php:173
msgid ""
@@ -9361,7 +9550,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "インデックスに %s の列を追加しました"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "カラム数は 0 より大きくなければいけません"
@@ -9387,97 +9576,97 @@ msgstr "テーブル %s を %s にコピーしました"
msgid "The table name is empty!"
msgstr "テーブル名が空です!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "テーブルの並び順"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(1 回)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "テーブルの移動先(database.table):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "テーブルオプション"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "リネーム後のテーブル名"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "テーブルを(database.table)にコピーする:"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "コピーしたテーブルに切り替える"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "テーブル管理"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "テーブルのデフラグ"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "テーブル %s をフラッシュしました"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "テーブルをフラッシュする(FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "データまたはテーブルの削除"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "テーブルを空にする(TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "テーブルを削除する(DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "パーティション管理"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "パーティション %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "分析"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "確認"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "最適化"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "再構築"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "修復"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "パーティションを削除"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "参照整合性の確認:"
@@ -9485,39 +9674,39 @@ msgstr "参照整合性の確認:"
msgid "Show tables"
msgstr "テーブルを表示する"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "ディスク使用量"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "使用量"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "有効"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "行の統計"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "ステートメント"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "静的"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "動的"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "行の長さ"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " 行のサイズ "
@@ -9529,7 +9718,6 @@ msgstr ""
"い)"
#: tbl_relation.php:402
-#| msgid "Internal relations"
msgid "Internal relation"
msgstr "内部リレーション"
@@ -9598,54 +9786,52 @@ msgstr "なし"
msgid "Column %s has been dropped"
msgstr "カラム %s を削除しました"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "%s に主キーを追加しました"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "%s にインデックスを追加しました"
-#: tbl_structure.php:472
-#, fuzzy
-#| msgid "Show PHP information"
+#: tbl_structure.php:471
msgid "Show more actions"
-msgstr "PHP 情報"
+msgstr "他の操作を表示する"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "リレーションビュー"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "テーブル構造を確認する"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "カラムを追加する"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "テーブルの末尾"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "テーブルの先頭"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "指定カラムの後に %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "%s つのカラムにインデックスを作成する"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "パーティション有り"
@@ -9657,7 +9843,8 @@ msgstr "テーブル `%s` に対しての追跡レポート"
#: tbl_tracking.php:182
#, php-format
msgid "Version %s is created, tracking for %s.%s is activated."
-msgstr "バージョン %s を作成しました。%s.%s の SQL コマンド追跡機能はアクティブです。"
+msgstr ""
+"バージョン %s を作成しました。%s.%s の SQL コマンド追跡機能はアクティブです。"
#: tbl_tracking.php:190
#, php-format
@@ -9673,107 +9860,143 @@ msgstr "%s.%s への SQL コマンド追跡、バージョン %s をアクティ
msgid "SQL statements executed."
msgstr "SQL 文が実行されました。"
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
-msgstr "作成された一時的なデータベースを使用してダンプを実行することができます。これを実行できる特権を持っていることを確認してください。"
+msgstr ""
+"作成された一時的なデータベースを使用してダンプを実行することができます。これ"
+"を実行できる特権を持っていることを確認してください。"
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
-msgstr "一時的なデータベースに対して実行しない場合は、この2行をコメントアウトします。"
+msgstr ""
+"一時的なデータベースに対して実行しない場合は、この2行をコメントアウトします。"
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
-msgstr "SQL コマンドをエクスポートしました。ダンプしたものをコピーするか実行するかしてください。"
+msgstr ""
+"SQL コマンドをエクスポートしました。ダンプしたものをコピーするか実行するかし"
+"てください。"
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "バージョン %s のスナップショット(SQL コード)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "追跡するデータ定義コマンド"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "エラーを収集する"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "追跡するデータ操作コマンド"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "追跡しているコマンド"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "種別:%s、期間:%s-%s、ユーザ:%sで絞り込む %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "このテーブルに対しての追跡データを削除する"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "データベースが存在しません"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "日時"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "データ定義コマンド"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "データ操作コマンド"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL文のダンプ(ファイルでダウンロード)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL文のダンプ"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
-msgstr "このオプションは、テーブルやそれに含まれるデータを置き換えるかもしれません。"
+msgstr ""
+"このオプションは、テーブルやそれに含まれるデータを置き換えるかもしれません。"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL 文を実行"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "上の結果をエクスポートする %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "バージョンを表示する"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "バージョン"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "%s.%s への SQL コマンド追跡を非アクティブにする"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "すぐに非アクティブにする"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "%s.%s への SQL コマンド追跡をアクティブにする"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "すぐにアクティブにする"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "%2$s.%3$s にバージョン %1$s を作成"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "追跡するデータ定義コマンド"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "追跡するデータ操作コマンド"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "バージョンを作成"
diff --git a/po/ka.po b/po/ka.po
index 462215fa31..04c57d29bc 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1,20 +1,20 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "ყველას ჩვენება"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "ძებნა"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "ძებნა"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "გადასვლა"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Keyname"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "შეიქმნა მონაცემთა ბაზა %1$s."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "მონაცემთა ბაზის კომენტარი: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "ცხრილის კომენტარები"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "ცხრილის კომენტარები"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -150,11 +150,11 @@ msgstr "სვეტების სახელები"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "ტიპი"
@@ -164,8 +164,8 @@ msgstr "ტიპი"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "ნული"
@@ -175,7 +175,7 @@ msgstr "ნული"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "ნაგულისხმები"
@@ -198,39 +198,40 @@ msgstr "Links to"
msgid "Comments"
msgstr "კომენტარები"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "არა"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "დიახ"
@@ -242,8 +243,8 @@ msgstr "დაბეჭდვა"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "No tables found in database."
@@ -269,81 +270,81 @@ msgstr "Database %s has been renamed to %s"
msgid "Database %s has been copied to %s"
msgstr "Database %s has been copied to %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Rename database to"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "ბრძანება"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Rename database to"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s has been dropped."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "მონაცემთა ბაზები არაა"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copy database to"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "მხოლოდ სტრუქტურა"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "სტრუქტურა და მონაცემები"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "მხოლოდ მონაცემები"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE before copying"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Add %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Add AUTO_INCREMENT value"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Add constraints"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Switch to copied database"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "კოლაცია"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -355,7 +356,7 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -365,17 +366,17 @@ msgstr "Relational schema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "ცხრილი"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "სტრიქონები"
@@ -391,21 +392,21 @@ msgstr "in use"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "შეიქმნა"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "უკანასკნელი განახლება"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Last check"
@@ -417,101 +418,94 @@ msgid_plural "%s tables"
msgstr[0] "%s table(s)"
msgstr[1] "%s table(s)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Your SQL query has been executed successfully"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "დალაგება"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "ზრდადობით"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "კლებადობით"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "ჩვენება"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "კრიტერია"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "და"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "ან"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "შეცვლა"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Add/Delete Criteria Row"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "ველის სვეტების დამატება/წაშლა"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "მოთხოვნის განახლება"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "გამოიყენე ცხრილები"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL query on database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
@@ -553,7 +547,7 @@ msgstr[1] "%s match(es) inside table %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "არჩევა"
@@ -563,14 +557,15 @@ msgstr "არჩევა"
msgid "Delete the matches for the %s table?"
msgstr "Dumping data for table"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "წაშლა"
@@ -614,17 +609,17 @@ msgstr "ველში:"
msgid "No tables found in database"
msgstr "No tables found in database."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Table %s has been emptied"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "View %s has been dropped"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Table %s has been dropped"
@@ -637,14 +632,14 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -667,22 +662,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "ყველას შემოწმება"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "მონიშნვის მოხსნა ყველასთვის"
@@ -691,16 +686,16 @@ msgid "Check tables having overhead"
msgstr "Check tables having overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ექსპორტი"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "ხედის ამობეჭდვა"
@@ -712,28 +707,45 @@ msgstr "ცარიელი"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Drop"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "ცხრილის შემოწმება"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "ცხრილის ოპტიმიზება"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "ცხრილის აღდგენა"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyze table"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "მონაცემთა ბაზები არაა"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Replace table data with file"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "მონაცემების ლექსიკონი"
@@ -748,10 +760,10 @@ msgstr "დაბლოკილი ცხრილების გამოტ
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "მონაცემთა ბაზა"
@@ -760,37 +772,37 @@ msgstr "მონაცემთა ბაზა"
msgid "Last version"
msgstr "Create relation"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "შექმნა"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "მდგომარეობა"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "მოქმედება"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -799,11 +811,11 @@ msgstr ""
msgid "Versions"
msgstr "სპარსული"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "მხოლოდ სტრუქტურა"
@@ -813,8 +825,8 @@ msgstr "მხოლოდ სტრუქტურა"
msgid "Untracked tables"
msgstr "დაბლოკილი ცხრილების გამოტოვება"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "ცხრილის შემოწმება"
@@ -874,11 +886,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -944,6 +956,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Your SQL query has been executed successfully"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -968,270 +987,288 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "ნამდვილად გსურთ "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "You are about to DESTROY a complete database!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "You are about to DESTROY a complete database!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "პროცედურები"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Allows inserting and replacing data."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "This operation could take a long time. Proceed anyway?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "You are about to DISABLE a BLOB Repository!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Are you sure you want to disable all BLOB references for database %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Missing value in the form!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "ეს არ არის რიცხვი!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "ჰოსტის სახელი არაა შეყვანილი!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "მომხმარებლის სახელი ცარიელია!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "პაროლი ცარიელია!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "პაროლები არ ემთხვევა!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "ახალი მომხმარებლის დამატება"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Create relation"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reload privileges"
msgid "Reloading Privileges"
msgstr "პრივილეგიების გადატვირთვა"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Remove selected users"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "გაუქმება"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "ჩატვირთვა"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "პროცესები"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Rename database to"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Rename database to"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copy database to"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "სიმბოლოთა ნაკრები"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Table must have at least one field."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "ცხრილის შექმნა"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "ძებნა"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "SQL Query box"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "SQL Query box"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "ძრავები"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "შენახვა"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "დამალვა"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL Query box"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL Query box"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "იგნორირება"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Select referenced key"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Select Foreign Key"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "აირჩიეთ საჩვენებელი ველი"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "პაროლის დაგენერირება"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "დაგენერირება"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "პაროლის შეცვლა"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "ორშ"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1241,125 +1278,130 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "მონაცემთა ბაზები არაა"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "შემოწირულობა"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "წინა"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "შემდეგი"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "სულ"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ბინარული"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "მარ"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "აპრ"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "მაი"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ივნ"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ივლ"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "აგვ"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ოქტ"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1367,178 +1409,178 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "დეკ"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "კვი"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "ორშ"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "სამ"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "პარ"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "შაბ"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "კვი"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "ორშ"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "სამ"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ოთხ"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "ხუთ"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "პარ"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "შაბ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "ვიკი"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1594,33 +1636,33 @@ msgid "No index defined!"
msgstr "ინდექსი არაა განსაზღვრული!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "ინდექსები"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "უნიკალური"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "შეკუმშული"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "კომენტარი"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "რედაქტირება"
@@ -1644,18 +1686,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "მონაცემთა ბაზები"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "შეცდომა"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1663,7 +1705,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d row(s) affected."
msgstr[1] "%1$d row(s) affected."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1671,7 +1713,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "წაიშალა %1$d სტრიქონი."
msgstr[1] "წაიშალა %1$d სტრიქონი."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1765,11 +1807,11 @@ msgstr "მოგესალმებათ %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1916,19 +1958,19 @@ msgstr "ცხრილები"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "მონაცემები"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "სულ"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -2027,16 +2069,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "სერვერი"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Invalid authentication method set in configuration:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "You should upgrade to %s %s or later."
@@ -2071,7 +2113,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "დოკუმენტაცია"
@@ -2223,7 +2265,7 @@ msgstr "The %s functionality is affected by a known bug, see %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "სტრუქტურა"
@@ -2258,7 +2300,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "web server upload directory"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "The directory you set for upload work cannot be reached"
@@ -2430,7 +2472,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "დაბრუნება"
@@ -2563,7 +2605,7 @@ msgid "Compress on the fly"
msgstr "Compress on the fly"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "კონფიგურაციის ფაილი"
@@ -2702,7 +2744,7 @@ msgid "Character set of the file"
msgstr "სომბოლოთა ნაკრები ფაილისათვის"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "ფორმატი"
@@ -3025,7 +3067,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Customize appearance of the navigation frame"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "სერვერები"
@@ -3840,7 +3882,7 @@ msgstr "SweKey config file"
msgid "Authentication method to use"
msgstr "Authentication method to use"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "ავთენტიფიკაციის ტიპი"
@@ -4369,9 +4411,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "პაროლი"
@@ -4391,8 +4433,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "მომხმარებელი:"
@@ -4519,7 +4561,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Verbose multiple statements"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
@@ -4678,7 +4720,7 @@ msgstr "მოვლენები"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "სახელი"
@@ -4701,8 +4743,8 @@ msgid "Designer"
msgstr "შემქნელი"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "პრივილეგიები"
@@ -4714,7 +4756,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Return type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4735,23 +4777,23 @@ msgstr "სერვერი არ პასუხობს"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "დეტალები..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "პაროლის შეცვლა"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "პაროლი არაა"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Re-type"
@@ -4775,7 +4817,7 @@ msgid "Create"
msgstr "შექმნა"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "პრივილეგიები არაა"
@@ -4906,12 +4948,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4930,7 +4972,7 @@ msgstr "შეკუმშვა"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "არაა"
@@ -5126,7 +5168,7 @@ msgstr "Sort by key"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "პარამეტრები"
@@ -5165,65 +5207,65 @@ msgstr "Show BLOB contents"
msgid "Browser transformation"
msgstr "ინფორმაცია ბრაუზერის შესახებ"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "ასლი"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "სტრიქონი წაიშალა"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "მოთხოვნაში"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "სულ"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "მოთხოვნას დასჭირდა %01.4f წმ"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "შეცვლა"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF სქემის ჩვენება"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Create relation"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "ბმული ვერ მოიძებნა"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "ინფორმაცია ვერსიის შესახებ"
@@ -5661,8 +5703,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5787,9 +5829,9 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "ჰოსტი"
@@ -5800,7 +5842,7 @@ msgid "Generation Time"
msgstr "დაგენერირების დრო"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "სერვერის ვერსია"
@@ -6143,7 +6185,32 @@ msgstr "არაა"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "პარ"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Submit"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "ახალი ველის დამატება"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "ცვლილების გარეშე"
@@ -6450,8 +6517,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "მომხმარებლის სახელი"
@@ -6474,7 +6541,7 @@ msgstr "ცვლადი"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "მნიშვნელობა"
@@ -6492,34 +6559,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "ნებისმიერი მომხმარებელი"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "გამოიყენე ტექსტური ველი"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "ნებისმიერი ჰოსტი"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "ლოკალური"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "ეს ჰოსტი"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Use Host Table"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6585,7 +6652,7 @@ msgstr "ატრიბუტები"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "ექსტრა"
@@ -6688,12 +6755,12 @@ msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "უცნობი ენა: %1$s."
@@ -6773,7 +6840,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Run SQL query/queries on database %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "გაწმენდა"
@@ -6807,10 +6874,6 @@ msgstr "გამყოფი"
msgid " Show this query here again "
msgstr " Show this query here again "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Submit"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "View only"
@@ -6819,7 +6882,7 @@ msgstr "View only"
msgid "Location of the text file"
msgstr "Location of the text file"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web server upload directory"
@@ -6869,19 +6932,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Unclosed quote"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Invalid Identifer"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
@@ -6935,7 +6998,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "ინდექსი"
@@ -6984,12 +7047,12 @@ msgid "As defined:"
msgstr "As defined:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "პირველადი"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -7003,7 +7066,7 @@ msgstr ""
"author what %s does."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Storage Engine"
@@ -7011,13 +7074,13 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr "PARTITION definition"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s ველის დამატება"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7244,84 +7307,84 @@ msgstr "ZIP არქივში ფაილების პოვნა ვ
msgid "Error in ZIP archive:"
msgstr "შეცდომა ZIP არქივში:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "General relation features"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL კავშირის კოლაცია"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Other core settings"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "Other core settings"
msgid "More settings"
msgstr "Other core settings"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "ოქმის ვერსია"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "მომხმარებელი"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-ის სიმბოლოთა ნაკრები"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "ვებ სერვერი"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL-ის კლიენტის ვერსია"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP-ის გაფართოება"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP-ის ინფორმაციის ჩვენება"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "ვიკი"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "ოფიციალური ვებგვერდი"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "ატრიბუტები"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "ექსპორტი"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "ცვლილების გარეშე"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7333,7 +7396,7 @@ msgstr ""
"running with this default, is open to intrusion, and you really should fix "
"this security hole by setting a password for user 'root'."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7343,7 +7406,7 @@ msgstr ""
"პარამეტრი არაა თავსებადი phpMyAdmin-თან და შეიძლება გამოიწვიოს მონაცემების "
"დაზიანება!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7354,7 +7417,7 @@ msgstr ""
"არ შეუძლია სტრიქონების სწორად დაყოფა რის გამოც შეიძლება მიიღოთ მოულოდნელი "
"შედეგი."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7366,7 +7429,7 @@ msgstr ""
"validity configured in phpMyAdmin, because of this, your login will expire "
"sooner than configured in phpMyAdmin."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7382,19 +7445,19 @@ msgstr ""
"validity configured in phpMyAdmin, because of this, your login will expire "
"sooner than configured in phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"The configuration file now needs a secret passphrase (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7406,14 +7469,14 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7422,7 +7485,7 @@ msgstr ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7446,14 +7509,14 @@ msgstr "ფაილები"
msgid "filter tables by name"
msgstr "ცხრილის სახელი"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "ცხრილის შექმნა"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა"
@@ -7861,107 +7924,107 @@ msgid "Includes all privileges except GRANT."
msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Allows altering the structure of existing tables."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Allows altering and dropping stored routines."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Allows creating new databases and tables."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Allows creating stored routines."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Allows creating new tables."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Allows creating temporary tables."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Allows creating, dropping and renaming user accounts."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Allows creating new views."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Allows deleting data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Allows dropping databases and tables."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Allows dropping tables."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Allows to set up events for the event scheduler"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Allows executing stored routines."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Allows importing data from and exporting data into files."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Allows inserting and replacing data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Allows locking tables for the current thread."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7969,58 +8032,58 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Allows viewing processes of all users"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Has no effect in this MySQL version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Needed for the replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Allows reading data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gives access to the complete list of databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Allows performing SHOW CREATE VIEW queries."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Allows shutting down the server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -8031,12 +8094,12 @@ msgstr ""
"killing threads of other users."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Allows creating and dropping triggers"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Allows changing data."
@@ -8051,192 +8114,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "არაა"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Table-specific privileges"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Note: MySQL privilege names are expressed in English "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "გლობალური პრივილეგიები"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Database-specific privileges"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "ადმინისტრირება"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "გლობალური პრივილეგიები"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Database-specific privileges"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resource limits"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Login Information"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "არ შეცვალო პაროლი"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "მომხმარებელი %s უკვე არსებობს!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "თქვენ დაამატეთ ახალი მომხმარებელი."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "The password for %s was changed successfully."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s-ის წაშლა"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "No users selected for deleting!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Reloading the privileges"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "The privileges were reloaded successfully."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "პრივილეგიების რედაქტირება"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revoke"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "ნებისმიერი"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "მომხმარებლის მიმოხილვა"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "ახალი მომხმარებლის დამატება"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Remove selected users"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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 uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Column-specific privileges"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Change Login Information / Copy User"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... ძველის შენახვა."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -8244,45 +8307,45 @@ msgstr ""
" ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების "
"გადატვირთვა."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "მონაცემთა ბაზა მომხმარებლისთვის"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "არაა"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
"იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Grant all privileges on wildcard name (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "გლობალულრი"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "database-specific"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "wildcard"
@@ -9415,7 +9478,7 @@ msgstr "სესიის მნიშვნელობა"
msgid "Global value"
msgstr "გლობალური მნიშვნელობა"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "ჩამოტვირთვა"
@@ -9460,55 +9523,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "დაუცველი კავშირი"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration file"
+msgid "Configuration saved."
+msgstr "კონფიგურაციის ფაილი"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "განხილვა"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "ფარული შეტყობინებების ჩვენება (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "There are no configured servers"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "ახალი სერვერი"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "ნაგულისხმები ენა"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "let the user choose"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- არაა -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "ნაგულისხმები სერვერი"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "სტრიქონის დასასრული"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "ჩვენება"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "ჩატვირთვა"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin-ის სათაო გვერდი"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "შემოწირულობა"
@@ -9709,9 +9784,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9824,64 +9899,64 @@ msgstr "Table %1$s has been altered successfully"
msgid "Function"
msgstr "ფუნქცია"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Because of its length,
this field might not be editable "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Remove BLOB Repository Reference"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binary - do not edit"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "ახალი სტრიქონის ჩამატება"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Showing SQL query"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "და შემდეგ"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "წინა გვერდზე დაბრუნება"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "სხვა ახალი სტრიქონის დამატება"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "ამ გვერდზე დაბრუნება"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "შემდეგი სტრიქონის რედაქტირება"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -10047,7 +10122,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Add to index %s column(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
@@ -10073,102 +10148,102 @@ msgstr "Table %s has been copied to %s."
msgid "The table name is empty!"
msgstr "ცხრილის სახელი ცარიელია!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Alter table order by"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singly)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Move table to (database.table):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "ცხრილის პარამეტრები"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Rename table to"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copy table to (database.table):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Switch to copied table"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Table maintenance"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragment table"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Table %s has been flushed"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Flush the table (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Dumping data for table"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "მონაცემთა ბაზები არაა"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Partition maintenance"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "დანაყოფი %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analyze"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "შემოწმება"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "ოპტიმიზება"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Rebuild"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "აღდგენა"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Remove partitioning"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Check referential integrity:"
@@ -10176,39 +10251,39 @@ msgstr "Check referential integrity:"
msgid "Show tables"
msgstr "ცხრილების ჩვენება"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "ადგილის გამოყენება"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "გამოყენება"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "ეფექტური"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Row Statistics"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Statements"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "სტატიკური"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "დინამიური"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "სტრიქონის სიგრძე"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " სტრიქონის ზომა "
@@ -10298,57 +10373,57 @@ msgstr "არაა"
msgid "Column %s has been dropped"
msgstr "Table %s has been dropped"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "A primary key has been added on %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "An index has been added on %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "PHP-ის ინფორმაციის ჩვენება"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relation view"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "ცხრილის სტრუქტურის შეთავაზება"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "%s ველის დამატება"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "ცხრილის ბოლოშო"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "ცხრილის დასაწყისში"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "After %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Create an index on %s columns"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "დაყოფილი"
@@ -10376,109 +10451,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Ignore errors"
+msgid "Query error"
+msgstr "შეცდომების იგნორირება"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Allows inserting and replacing data."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "მონაცემთა ბაზები არაა"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "მონაცემები"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Export defaults"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "სპარსული"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Create relation"
diff --git a/po/ko.po b/po/ko.po
index 22e167a903..bfad563a1c 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: \n"
"Language-Team: korean \n"
-"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "모두 보기"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "검색"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "검색"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "실행"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "키 이름"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "데이터베이스 %1$s가 생성되었습니다."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "데이터베이스 설명:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "테이블 설명"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "테이블 설명"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "컬럼명"
@@ -148,11 +148,11 @@ msgstr "컬럼명"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "종류"
@@ -162,8 +162,8 @@ msgstr "종류"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "기본값"
@@ -196,39 +196,40 @@ msgstr "링크 대상:"
msgid "Comments"
msgstr "설명(코멘트)"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr " 아니오 "
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "예"
@@ -240,8 +241,8 @@ msgstr "인쇄"
msgid "View dump (schema) of database"
msgstr "데이터베이스의 덤프(스키마) 데이터 보기"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "데이터베이스에 테이블이 없습니다."
@@ -267,81 +268,81 @@ msgstr "데이터베이스 %s 의 이름을 %s 로 변경하였습니다."
msgid "Database %s has been copied to %s"
msgstr "데이터베이스 %s 를 %s 로 복사하였습니다."
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "데이터베이스 이름 변경"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "커맨드"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "데이터베이스 이름 변경"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "데이터베이스 %s 를 제거했습니다."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "데이터베이스가 없습니다"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "데이터베이스 복사"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "구조만"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "구조와 데이터 모두"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "데이터만"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "복사 전에 CREATE DATABASE 실행"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s 추가"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT 값 추가"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "제약조건 추가"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "복사한 테이블로 옮겨감"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "데이터정렬방식"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -350,10 +351,10 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
-"%s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
+"s여기를 클릭%s하십시오."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -361,17 +362,17 @@ msgstr ""
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "테이블 "
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "행(레코드)"
@@ -387,21 +388,21 @@ msgstr "사용중"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "생성"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "업데이트"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "검사"
@@ -411,97 +412,90 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s개 테이블 "
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL 질의가 바르게 실행되었습니다."
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다."
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "정렬"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "오름차순"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "내림차순(역순)"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "보기"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criteria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "삽입"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "그리고"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "삭제"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "또는"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "수정"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "조건행 추가/삭제"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "컬럼 추가/삭제"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "질의 업데이트"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "사용할 테이블"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "데이터베이스 %s에 SQL 질의:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "질의 실행"
@@ -542,7 +536,7 @@ msgstr[0] "%s 건 일치 (테이블 %s)"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "보기"
@@ -552,14 +546,15 @@ msgstr "보기"
msgid "Delete the matches for the %s table?"
msgstr "테이블의 덤프 데이터"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "삭제"
@@ -600,17 +595,17 @@ msgstr "검색할 컬럼:"
msgid "No tables found in database"
msgstr "데이터베이스에 테이블이 없습니다."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "테이블 %s 을 비웠습니다"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "뷰 %s가 제거되었습니다."
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "테이블 %s 을 제거했습니다."
@@ -623,11 +618,11 @@ msgstr "트래킹이 활성화되었습니다."
msgid "Tracking is not active."
msgstr "트래킹이 활성화되어 있지 않습니다."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -651,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "선택한 것을:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "모두 체크"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "모두 체크안함"
@@ -675,16 +670,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "내보내기"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "인쇄용 보기"
@@ -696,28 +691,44 @@ msgstr "비우기"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "삭제"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "테이블 검사"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "테이블 최적화"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "테이블 복구"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "테이블 분석"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "파일로 테이블 대치하기"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "파일로 테이블 대치하기"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "데이터 사전 (전체 구조보기)"
@@ -731,10 +742,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "데이터베이스"
@@ -742,37 +753,37 @@ msgstr "데이터베이스"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr " 만들기 "
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "상태"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "실행"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -781,11 +792,11 @@ msgstr ""
msgid "Versions"
msgstr "테이블 작업"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "구조만"
@@ -794,8 +805,8 @@ msgstr "구조만"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "테이블 검사"
@@ -856,8 +867,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -921,6 +932,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL 질의가 바르게 실행되었습니다."
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -945,259 +963,273 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "정말로 다음을 실행하시겠습니까? "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
+msgstr ""
+
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "프로세스 목록"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "데이터 추가(insert) 및 변경(replace) 허용."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Missing value in the form !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "은 숫자(번호)가 아닙니다!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "호스트명이 없습니다!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "사용자명이 없습니다!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "암호가 비었습니다!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "암호가 동일하지 않습니다!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "새 사용자 추가"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "서버 버전"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "사용권한을 갱신합니다(Reloading the privileges)"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "선택한 사용자를 삭제"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "프로세스 목록"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "데이터베이스 이름 변경"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "데이터베이스 이름 변경"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "데이터베이스 복사"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one column."
msgid "Table must have at least one column"
msgstr "테이블은 적어도 1개 이상의 컬럼을 갖고 있어야 합니다."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "새 페이지 만들기"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "검색"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL 질의"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL 질의"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "저장"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL 질의"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL 질의"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "출력할 필드 선택"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "암호 변경"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "암호 변경"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "월"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1205,254 +1237,259 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "데이터베이스가 없습니다"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "완료"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "이전"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "다음"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "오늘"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "1월"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "2월"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "3월"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "4월"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "5월"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "6월"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "7월"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "8월"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "9월"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "10월"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "11월"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "12월"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "1월"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "2월"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "3월"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "4월"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "5월"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "6월"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "7월"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "8월"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "9월"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "10월"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "11월"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "12월"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "일요일"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "월요일"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "화요일"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "수요일"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "목요일"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "금요일"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "토요일"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "토"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "일"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "월"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "화"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "수"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "목"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "금"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "토"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "주"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "시"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "분"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "초"
@@ -1505,34 +1542,34 @@ msgid "No index defined!"
msgstr "인덱스가 설정되지 않았습니다!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "인덱스"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "고유값"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "설명(코멘트)"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "수정"
@@ -1554,32 +1591,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "데이터베이스 "
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "오류"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1671,8 +1708,8 @@ msgstr "%s에 오셨습니다"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@@ -1817,19 +1854,19 @@ msgstr "테이블 수"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "데이터"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "전체 사용량"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "부담"
@@ -1919,16 +1956,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "서버"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1963,7 +2000,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "문서"
@@ -2111,7 +2148,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "구조"
@@ -2146,7 +2183,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "웹서버 업로드 디렉토리"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "업로드 디렉토리에 접근할 수 없습니다"
@@ -2315,7 +2352,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "리세트"
@@ -2432,7 +2469,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2559,7 +2596,7 @@ msgid "Character set of the file"
msgstr "파일 문자셋:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2886,7 +2923,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "서버"
@@ -3624,7 +3661,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4090,9 +4127,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "암호"
@@ -4112,8 +4149,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "사용자명:"
@@ -4229,7 +4266,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4387,7 +4424,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "이름"
@@ -4410,8 +4447,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "사용권한"
@@ -4423,7 +4460,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4442,23 +4479,23 @@ msgstr "서버 응답이 없습니다"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "암호 변경"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "암호 없음"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "재입력"
@@ -4480,7 +4517,7 @@ msgid "Create"
msgstr " 만들기 "
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "권한 없음"
@@ -4604,8 +4641,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4625,7 +4662,7 @@ msgstr "압축"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "없음"
@@ -4806,7 +4843,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "테이블 작업"
@@ -4844,65 +4881,65 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "선택한 줄(레코드)을 삭제 하였습니다."
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "질의(in query)"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "행(레코드) 보기"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "합계"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "질의 실행시간 %01.4f 초"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "변경"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "열(칼럼) 설명(코멘트) 출력하기"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "서버 버전"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr ""
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "버전 정보"
@@ -5287,8 +5324,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5399,9 +5436,9 @@ msgstr ""
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "호스트"
@@ -5412,7 +5449,7 @@ msgid "Generation Time"
msgstr "처리한 시간"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "서버 버전"
@@ -5749,7 +5786,30 @@ msgstr "없음"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "금"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "확인"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "변화 없음"
@@ -6053,8 +6113,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "사용자명"
@@ -6075,7 +6135,7 @@ msgstr "변수"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "값"
@@ -6094,34 +6154,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "아무나"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "아무데서나"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6186,7 +6246,7 @@ msgstr "보기"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "추가"
@@ -6284,12 +6344,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6369,7 +6429,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "데이터베이스 %s에 SQL 질의를 실행"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6403,10 +6463,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " 이 질의를 다시 보여줌 "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "확인"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "View only"
@@ -6415,7 +6471,7 @@ msgstr "View only"
msgid "Location of the text file"
msgstr "SQL 텍스트파일의 위치"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "웹서버 업로드 디렉토리"
@@ -6456,19 +6512,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "따옴표(quote)가 닫히지 않았음"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "잘못된 식별자(Identifer)"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6519,7 +6575,7 @@ msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "인덱스"
@@ -6566,12 +6622,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "기본"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -6583,7 +6639,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6591,12 +6647,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "필드 추가하기"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6738,78 +6794,78 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr ""
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr ""
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "사용자"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL 문자셋"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP 버전"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP 정보 보기"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin 공식 홈"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "보기"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "변화 없음"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6820,21 +6876,21 @@ msgstr ""
"가 작동한다면 누구나 침입할 수 있으므로, 이 보안상 허점을 수정하시기 바랍니"
"다."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6842,24 +6898,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6868,24 +6924,24 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
-"%s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
+"s여기를 클릭%s하십시오."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6906,13 +6962,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "테이블명"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "새 페이지 만들기"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "데이터베이스를 선택하세요"
@@ -7304,109 +7360,109 @@ msgid "Includes all privileges except GRANT."
msgstr "GRANT 이외의 모든 권한을 포함함."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "테이블 구조 변경 허용."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "인덱스 생성 및 삭제 허용."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "DB 및 테이블 생성 허용."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "테이블 생성 허용."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "테이블 생성 허용."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "임시테이블 생성 허용."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "테이블 생성 허용."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "데이터 삭제 허용."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "DB 및 테이블 삭제 허용."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "테이블 삭제 허용."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "인덱스 생성 및 삭제 허용."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "데이터 추가(insert) 및 변경(replace) 허용."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7414,59 +7470,59 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "이 버전의 MySQL에는 소용이 없습니다."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "캐시를 비우고 서버를 재시동하는 것을 허용."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "복제서버(replication slaves)에 필요합니다."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "데이터 읽기 허용."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "전체 데이터베이스 목록 접근을 허용"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "서버 종료 허용."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7474,13 +7530,13 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "인덱스 생성 및 삭제 허용."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "데이터 변경 허용."
@@ -7495,233 +7551,233 @@ msgctxt "None privileges"
msgid "None"
msgstr "없음"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "테이블에 관한 권한"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " 주의: MySQL 권한 이름은 영어로 표기되어야 합니다. "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "전체적 권한"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "데이터베이스에 관한 권한"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr ""
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "전체적 권한"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "데이터베이스에 관한 권한"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "리소스 제한"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "로그인 정보"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "암호를 변경하지 않음"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "사용자가 없습니다."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "사용자 %s 가 이미 존재합니다!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "새 사용자를 추가했습니다."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s 의 권한을 업데이트했습니다."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s의 권한을 제거했습니다."
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s 의 암호가 바뀌었습니다."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr " %s 을 삭제합니다"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "사용권한을 갱신합니다(Reloading the privileges)"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "선택한 사용자들을 삭제했습니다."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "권한을 다시 로딩했습니다."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "권한 수정"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "제거"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Any"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "사용자 개요"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
#, fuzzy
msgid "Grant"
msgstr "인쇄"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "새 사용자 추가"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "선택한 사용자를 삭제"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "열(칼럼)에 관한 권한"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "다음 데이터베이스에 권한 추가하기"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "다음 테이블에 권한 추가하기"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
#, fuzzy
msgid " ... delete the old one from the user tables."
msgstr "권한 테이블에서 사용자를 삭제하기만 함."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
#, fuzzy
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
#, fuzzy
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr "사용자를 삭제하고 사용권한을 갱신함."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "없음"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "데이터베이스 "%s" 에 대한 사용권한 검사."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" 에 접근할 수 있는 사용자들"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8740,7 +8796,7 @@ msgstr "세션 값"
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8772,57 +8828,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "수정된 내용이 저장되었습니다."
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin 설명서"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9049,63 +9117,63 @@ msgstr "선택한 사용자들을 삭제했습니다."
msgid "Function"
msgstr "함수"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " 필드의 길이 때문에,
이 필드를 편집할 수 없습니다 "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " 바이너리 - 편집 금지 "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "새 열을 삽입합니다"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "이어서"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "되돌아가기"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "새 행(레코드) 삽입하기"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
#, fuzzy
msgid "Go back to this page"
msgstr "되돌아가기"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9267,7 +9335,7 @@ msgstr "(\"PRIMARY\"는 기본 키만의 유일한 이름입니다!)"
msgid "Add to index %s column(s)"
msgstr "%s개 열(칼럼)에 인덱스 추가"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9293,104 +9361,104 @@ msgstr "%s 테이블이 %s 으로 복사되었습니다."
msgid "The table name is empty!"
msgstr "테이블명이 없습니다!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "다음 순서대로 테이블 정렬(변경)"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(단독으로)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "테이블 이동 (데이터베이스명.테이블명):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "테이블 이름 바꾸기"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "테이블 복사 (데이터베이스명.테이블명):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "복사한 테이블로 옮겨감"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "테이블 유지보수"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "테이블 %s 을 닫았습니다(캐시 삭제)"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "테이블 닫기(캐시 삭제)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "테이블의 덤프 데이터"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "데이터베이스가 없습니다"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "테이블 유지보수"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "테이블 복구"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "referential 무결성 검사:"
@@ -9398,39 +9466,39 @@ msgstr "referential 무결성 검사:"
msgid "Show tables"
msgstr "테이블 보기"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "공간 사용량"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "사용법(량)"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "실제량"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "행(레코드) 통계"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "명세"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "동적(다이내믹)"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "행 길이"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Row size "
@@ -9512,56 +9580,56 @@ msgstr "없음"
msgid "Column %s has been dropped"
msgstr "테이블 %s 을 제거했습니다."
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr " %s에 기본 키가 추가되었습니다"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "%s 에 인덱스가 걸렸습니다"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "PHP 정보 보기"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "제안하는 테이블 구조"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "필드 추가하기"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "테이블의 마지막"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "테이블의 처음"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s 다음에"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "%s 개 열(칼럼)에 인덱스 만들기 "
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9589,109 +9657,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "질의 종류"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "데이터 추가(insert) 및 변경(replace) 허용."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "데이터베이스가 없습니다"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "데이터"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "PHP 버전"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "서버 버전"
diff --git a/po/lt.po b/po/lt.po
index 6921f3770c..0785fe768d 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1,22 +1,22 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
"Last-Translator: Kęstutis \n"
"Language-Team: lithuanian \n"
-"Language: lt\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"
-"%100<10 || n%100>=20) ? 1 : 2);\n"
+"Language: lt\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
+"100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Rodyti viską"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Paieška"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Paieška"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Vykdyti"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Indekso pavadinimas"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Duomenų bazė %1$s sukurta."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Duomenų bazės komentaras: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Lentelės komentarai"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Lentelės komentarai"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Stulpelis"
@@ -149,11 +149,11 @@ msgstr "Stulpelis"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipas"
@@ -163,8 +163,8 @@ msgstr "Tipas"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -174,7 +174,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Nutylint"
@@ -197,39 +197,40 @@ msgstr "Sąryšis su"
msgid "Comments"
msgstr "Komentarai"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Taip"
@@ -241,8 +242,8 @@ msgstr "Spausdinti"
msgid "View dump (schema) of database"
msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Duomenų bazėje nerasta lentelių."
@@ -268,78 +269,78 @@ msgstr "Duomenų bazė %s pervadinta į %s"
msgid "Database %s has been copied to %s"
msgstr "Duomenų bazė %s buvo nukopijuota į %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Pervadinti duomenų bazę į"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Pašalinti duomenų bazę"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Duomenų bazė %s ištrinta."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Pašalinti duomenų bazę (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopijuoti duomenų bazę į"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tik struktūra"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktūra ir duomenys"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Tik duomenys"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE prieš kopijuojant"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Pridėti %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Pridėti AUTO_INCREMENT reikšmę"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Pridėti apribojimą"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pereiti į nukopijuotą duomenų bazę"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Palyginimas"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -347,7 +348,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Keisti arba eksportuoti ryšių schemą"
@@ -355,17 +356,17 @@ msgstr "Keisti arba eksportuoti ryšių schemą"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Lentelė"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Eilutės"
@@ -381,21 +382,21 @@ msgstr "šiuo metu naudojama"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Sukurta"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Paskutinis atnaujinimas"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Paskutinis patikrinimas"
@@ -407,97 +408,90 @@ msgstr[0] "%s lentelė"
msgstr[1] "%s lentelės"
msgstr[2] "%s lentelių"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Jūsų SQL užklausa sėkmingai įvykdyta"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Pasirinkite bent vieną stulpelį išvedimui"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Pereiti į"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "vizuali daryklė"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Rūšiuoti"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Didėjimo tvarka"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Mažėjimo tvarka"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Rodyti"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterijai"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Įterpiant"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Ir"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Pakeičiant"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Arba"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Keisti"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Įterpti/Pašalinti požymio eilutes"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Įterpti/trinti stulpelius"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Atnaujinti užklausą"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Naudoti lenteles"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-užklausa duomenų bazėje %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Vykdyti užklausą"
@@ -539,7 +533,7 @@ msgstr[2] "%s atitikmenų lentelėse %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Peržiūrėti"
@@ -548,14 +542,15 @@ msgstr "Peržiūrėti"
msgid "Delete the matches for the %s table?"
msgstr "Ištrinti sutapimus %s lentelėje(ei)?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Trinti"
@@ -595,17 +590,17 @@ msgstr "Stulpelio viduje:"
msgid "No tables found in database"
msgstr "Duomenų bazėje nerasta jokių lentelių."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Lentelės reikšmės %s ištuštintos"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Rodinys %s buvo panaikintas"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Lentelė %s panaikinta"
@@ -618,14 +613,14 @@ msgstr "Sekimas yra aktyvus."
msgid "Tracking is not active."
msgstr "Sekimas yra neaktyvus."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
-"%sdokumentacijoje%s."
+"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %"
+"sdokumentacijoje%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -648,22 +643,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Pasirinktus:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Pažymėti visas"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Atžymėti visas"
@@ -672,16 +667,16 @@ msgid "Check tables having overhead"
msgstr "Pažymėti turinčias perteklių"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksportuoti"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Spausdinti struktūrą"
@@ -693,28 +688,46 @@ msgstr "Išvalyti"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Šalinti"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Patikrinti lentelę"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizuoti"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Taisyti lentelę"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizuoti lentelę"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Eiti į lentelę"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Pakeisti lentelės turinį failo duomenimis "
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Pakeisti lentelės turinį failo duomenimis "
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Duomenų žodynas"
@@ -728,10 +741,10 @@ msgstr "Sekamos lentelės"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Duomenų bazė"
@@ -739,36 +752,36 @@ msgstr "Duomenų bazė"
msgid "Last version"
msgstr "Paskutinė versija"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Sukurta"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Atnaujinta"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Būsena"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Veiksmas"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Ištrinti šios lentelės sekimo duomenis"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktyvus"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "neaktyvus"
@@ -776,11 +789,11 @@ msgstr "neaktyvus"
msgid "Versions"
msgstr "Versijos"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Sekimo ataskaita"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Momentinė struktūros kopija"
@@ -788,8 +801,8 @@ msgstr "Momentinė struktūros kopija"
msgid "Untracked tables"
msgstr "Nesekamos lentelės"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Sekti lentelę"
@@ -848,11 +861,11 @@ msgstr "Atvaizdis įrašytas faile %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti "
-"%sdokumentaciją%s būdams kaip apeiti šį apribojimą."
+"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
+"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -919,6 +932,13 @@ msgstr ""
"dažniausiai reiškia, kad phpMyAdmin negali baigti importuoti nebent Jūs "
"padidintumėte PHP laiko limitą."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Jūsų SQL užklausa sėkmingai įvykdyta"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -944,223 +964,241 @@ msgstr "Spustelėkite atžymėjimui"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Ar tikrai norite "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Šalinamas įvykis"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Šalinama procedūra"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Trinami sekimo duomenys"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Šalinamas pirminis raktas/indeksas"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Operacija gali ilgai užtrukti. Tęsti?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Jūs ruošiatės IŠJUNGTI BLOB saugyklą!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Ar tikrai norite išjungti visas BLOB nuorodas duomenų bazei %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Trūksta reikšmės formoje!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Įveskite skaičių!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Tuščias prisijungimo adresas!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Tuščias vartotojo vardas!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Tuščias slaptažodis!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Slaptažodžiai nesutampa!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Sukurti naują naudotoją"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Sukurti naudotoją"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Perkraunamos privilegijos"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Šalinami pažymėti vartotojai"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Uždaryti"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Atšaukti"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Įkeliama"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Vykdoma užklausa"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Klaida vykdant užklausą"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Šalinamas stulpelis"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Pridedamas pirminis raktas"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Gerai"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Keičiamas duomenų bazės pavadinimas"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Perkrauti duomenų bazę"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Kopijuojama duomenų bazė"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Keičiama koduotė"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Lentelė turi turėti bent vieną stulpelį"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Lentelės kūrimas"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Ieškoma"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Slėpti užklausos laukelį"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Rodyti užklausos laukelį"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Redaguoti čia"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Išsaugoti"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Paslėpti"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Slėpti paieškos kriterijų"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Rodyti paieškos kriterijų"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoruoti"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Pasirinkite siejamą raktą"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Pasirinkti Foreign Key"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pasirinkite laukus peržiūrai"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Pridėti parinktį stulpeliui/skilčiai"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Generuoti slaptažodį"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generuoti"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Pakeisti slaptažodį"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Daugiau"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1170,254 +1208,260 @@ msgstr ""
"atnaujinimą. Naujausia versija yra %s, išleista %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", naujausia stabili versija:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Eiti į duomenų bazę"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Atlikta"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Ankstesnis"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Kitas"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Šiandien"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "sausio"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "vasario"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "kovo"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "balandžio"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Geg"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "birželio"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "liepos"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "rugpjūčio"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "rugsėjo"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "spalio"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "lapkričio"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "gruodžio"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Sau"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Vas"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Kov"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Bal"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Geg"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Bir"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Lie"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Rgp"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Rgs"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Spa"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Lap"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Grd"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Sekmadienis"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Pirmadienis"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Antradienis"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Trečiadienis"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Ketvirtadienis"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Penktadienis"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Šeštadienis"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sek"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pir"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Ant"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Tre"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Ket"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pen"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Šeš"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Sk"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Pr"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "An"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Tr"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Kt"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Pn"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Št"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Sav."
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Valanda"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minutė"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekundės"
@@ -1470,33 +1514,33 @@ msgid "No index defined!"
msgstr "Nėra aprašytų indeksų!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksai"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikalus"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Suspausta"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Elementų skaičius"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Komentaras"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redaguoti"
@@ -1519,18 +1563,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Duomenų bazės"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Klaida"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -1538,7 +1582,7 @@ msgstr[0] "Pakeista %1$d eilutė."
msgstr[1] "Pakeistos %1$d eilutės."
msgstr[2] "Pakeista %1$d eilučių."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -1546,7 +1590,7 @@ msgstr[0] "Ištrinta %1$d eilutė."
msgstr[1] "Ištrintos %1$d eilutės."
msgstr[2] "Ištrinta %1$d eilučių."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1639,8 +1683,8 @@ msgstr "Jūs naudojate %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
"skriptu%2$s, kad sukurtumėte failą."
@@ -1792,19 +1836,19 @@ msgstr "Lentelės"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Duomenys"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Iš viso"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Perteklius"
@@ -1892,16 +1936,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Serveris"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
@@ -1936,7 +1980,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2084,7 +2128,7 @@ msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktūra"
@@ -2118,7 +2162,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams."
@@ -2277,7 +2321,7 @@ msgstr "Leisti naudotojams adaptuoti šią reikšmę"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Atstatyti į pradinę būseną"
@@ -2405,7 +2449,7 @@ msgid "Compress on the fly"
msgstr "Glaudinti"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Nustatymų failas"
@@ -2536,7 +2580,7 @@ msgid "Character set of the file"
msgstr "Failo simbolių koduotė:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formatas"
@@ -2835,7 +2879,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Adaptuoti navigacijos rėmelio išvaizdą"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Serveriai"
@@ -3594,7 +3638,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Autentifikacijos tipas"
@@ -4076,9 +4120,9 @@ msgstr "Reikalaujama, kad SQL Validator būtų įjungtas"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Slaptažodis"
@@ -4102,8 +4146,8 @@ msgstr ""
"Jeigu Jūs turite individualizuotą slapyvardį, parašykite jį čia (numatytasis "
"yra [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Vartotojo vardas"
@@ -4218,7 +4262,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Patikrinti ar naujausia versija"
@@ -4368,7 +4412,7 @@ msgstr "Įvykiai"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Pavadinimas"
@@ -4391,8 +4435,8 @@ msgid "Designer"
msgstr "Projektavimas"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegijos"
@@ -4404,7 +4448,7 @@ msgstr ""
msgid "Return type"
msgstr "Gražinimo tipas"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4425,23 +4469,23 @@ msgstr "Serveris neatsako"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detalės..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Pakeisti slaptažodį"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Nėra slaptažodžio"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Įveskite dar kartą"
@@ -4463,7 +4507,7 @@ msgid "Create"
msgstr "Sukurti"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nėra privilegijų"
@@ -4567,8 +4611,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite "
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
@@ -4589,7 +4633,7 @@ msgstr "Glaudinti:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Ne"
@@ -4762,7 +4806,7 @@ msgstr "Rūšiuoti pagal raktą"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Nustatymai"
@@ -4797,64 +4841,64 @@ msgstr "Rodyti BLOB turinį"
msgid "Browser transformation"
msgstr "Naršyklės transformacija"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopijuoti"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Eilutė buvo ištrinta"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Stabdyti procesą"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "užklausa vykdoma"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Rodomi įrašai"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "iš viso "
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Užklausa užtruko %01.4f sek."
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Redaguoti"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Veiksmai su užklausos rezultatais"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Spausdinti rezultatus (su pilnais tekstais)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Rodyti diagramą"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Sukurti naudotoją"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Sąryšis nerastas"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versija"
@@ -5255,8 +5299,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5353,9 +5397,9 @@ msgstr "Rodyti MIME-tipus"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Darbinė stotis"
@@ -5366,7 +5410,7 @@ msgid "Generation Time"
msgstr "Atlikimo laikas"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Serverio versija"
@@ -5721,7 +5765,32 @@ msgstr "Nėra"
msgid "Convert to Kana"
msgstr "Konvertuoti į Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Pn"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Siųsti"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Apply index(s)"
+msgid "Add prefix"
+msgstr "Keisti žurnalą(us) (indeksą)"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Nėra pakeitimų"
@@ -6033,8 +6102,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Naudotojo vardas"
@@ -6055,7 +6124,7 @@ msgstr "Kintamasis"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Reikšmė"
@@ -6073,34 +6142,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Pridėti pavaldžiojo serverio (slave) dauginimo (replication) naudotoją"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Bet kurį vartotoją"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Naudokite teksto įvedimo lauką"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Bet kurį prisijungimo adresą"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokali darbinė stotis"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Dabartinis serveris"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Naudoti Host lentelę"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6164,7 +6233,7 @@ msgstr "Atributai"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Papildomai"
@@ -6259,12 +6328,12 @@ msgid "Toggle scratchboard"
msgstr "įjungti scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nežinoma kalba: %1$s."
@@ -6337,7 +6406,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Vykdyti SQL sakinius duomenų bazėje %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Išvalyti"
@@ -6371,10 +6440,6 @@ msgstr "Skyriklis"
msgid " Show this query here again "
msgstr " Rodyti šią užklausą vėl "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Siųsti"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Peržiūra"
@@ -6383,7 +6448,7 @@ msgstr "Peržiūra"
msgid "Location of the text file"
msgstr "Tekstinio failo vieta"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web serverio katalogas atsiuntimams"
@@ -6433,19 +6498,19 @@ msgstr "RAW PRADŽIA"
msgid "END RAW"
msgstr "RAW PABAIGA"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Trūksta uždaromosios kabutės"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Klaidingas vardas"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Klaidinga skyryba"
@@ -6494,7 +6559,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeksas"
@@ -6544,12 +6609,12 @@ msgid "As defined:"
msgstr "Kaip nurodyta:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Pirminis"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -6562,7 +6627,7 @@ msgstr ""
"Ši transformacija neturi paaiškinimo.
Klauskite autoriaus ką %s daro."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Saugojimo variklis"
@@ -6570,12 +6635,12 @@ msgstr "Saugojimo variklis"
msgid "PARTITION definition"
msgstr "SKAIDINIO (PARTITION) apibrėžimas"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Pridėti %s stulpelį(-ius)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)."
@@ -6777,73 +6842,73 @@ msgstr "ZIP archyve nerasta failų!"
msgid "Error in ZIP archive:"
msgstr "Klaida ZIP archyve:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Pagrindiniai nustatymai"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL prisijungimo lyginimas"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Išvaizdos nustatymai"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Daugiau nustatymų"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokolo versija"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Naudotojas"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL koduotė"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Interneto serveris"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL kliento versija"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP plėtinys"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Rodyti PHP informaciją"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Oficialus phpMyAdmin tinklalapis"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Prisidėti"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Gauti pagalbą"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Pakeitimų sąrašas"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6855,7 +6920,7 @@ msgstr ""
"nesaugi, bei gali būti atvira įsilaužimams, todėl rekomenduotina pakeisti "
"šias parinktis."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6864,7 +6929,7 @@ msgstr ""
"Savo PHP konfigūracijoje Jūs įjungėte mbstring.func_overload. Šis nustatymas "
"nėra suderinamas su phpMyAdmin ir gali pažeisti Jūsų duomenis!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6874,7 +6939,7 @@ msgstr ""
"simbolių kodaciją. Be mbstring plėtinio phpMyAdmin negali tesingai skaidyti "
"stringų, todėl galite sulaukti netikėtų rezultatų."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6882,17 +6947,17 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -6902,7 +6967,7 @@ msgstr ""
"yra Jūsų phpMyAdmin kataloge. Jūs turėtumėte jį pašalinti iškart po to kai "
"sukonfigūruosite phpMyAdmin."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
@@ -6913,7 +6978,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -6923,7 +6988,7 @@ msgstr ""
"kurios phpMyAdmin funkcijos gali būti išnykę. Pavyzdžiui, navigacijos "
"rėmelis automatiškai neatsinaujins."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -6932,7 +6997,7 @@ msgstr ""
"Jūsų PHP MySQL bibliotekos versija %s skiriasi nuo Jūsų MySQL serverio "
"versijos %s. Tai gali sukelti nenuspėjamą elgesį."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6955,12 +7020,12 @@ msgstr "Filtras"
msgid "filter tables by name"
msgstr "Pakeisti lentelės rikiavimą pagal:"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Sukurti lentelę"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Pasirinkite duomenų bazę"
@@ -7355,75 +7420,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Įtraukti visas teises, išskyrus GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Leisti keisti pašalinti saugimas programas (stored routines)."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Leisti kurti naujas duomenų bazes ir lenteles."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Leidžia sukurti naujas saugomas programas (stored routines)."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Leisti kurti naujas lenteles."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Leisti kurti laikinas lenteles."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Leidžia sukurti naujus rodinius (view)."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Leisti šalinti duomenis."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Leisti šalinti duomenų bazes ir lenteles."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Leisti šalinti lenteles."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Leisti įvykdyti saugomas programas (stored routines)."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Leisti įterpti ir eksportuoti duomenis iš failų."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7431,32 +7496,32 @@ msgstr ""
"privilegijų lentelės."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Leisti įterpti ir modifikuoti indeksus."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Leisti įterpti ir modifikuoti duomenis."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Leisti užrakinti lenteles procesų metu."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "Riboti prisijungimų kiekį per valandą."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7465,62 +7530,62 @@ msgstr ""
"valandą."
# gal labiau kartu vykstančių
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, fuzzy
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Riboti prisijungimų kiekį per valandą (kartu vykstančių)."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Leisti peržiūrėti procesus visiems naudotojams"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Negalioja šioje MySQL versijoje."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
#, fuzzy
msgid "Needed for the replication slaves."
msgstr "Reikalinga atstatyti slave darbinei stočiai"
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Leisti skaityti duomenis."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Suteikti prieigą prie visų duomenų bazių sąrašo."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Leisti išjungti serverį."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7531,12 +7596,12 @@ msgstr ""
"vartotojų atjungimui."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Leisti įterpti ir pašalinti trigerius."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Leisti modifikuoti duomenis."
@@ -7549,191 +7614,191 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nėra"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Specifinės lentelių privilegijos"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globalios teisės"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Specifinės duomenų bazių privilegijos"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globalios teisės"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Specifinės duomenų bazių privilegijos"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Išteklių apribojimai"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Prisijungimo informacija"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nekeisti slaptažodžio"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Nerasta jokių naudotojų."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Vartotojas %s jau yra!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Jūs sukūrėte naują vartotoją."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Jūs pakeitėte privilegijas %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Jūs panaikinote privilegijas %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Šaliname: %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Nepasirinta vartotojų trynimui!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Perkraunamos privilegijos"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Pažymėti vartotojai sėkmingai pašalinti."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Teisės sėkmingai perkrautos."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Redaguoti privilegijas"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Panaikinti"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Bet kurį(ią)"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Vartotojų peržiūra"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Suteikti"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Sukurti naują vartotoją"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Pašalinti pažymėtus vartotojus"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Specifinės stulpelių privilegijos"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Sukurti privilegijas šiai duomenų bazei"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Sukurti privilegijas šiai lentelei"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... palikti seną vartotoją."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... pašalinti seną vartotoją iš vartotojų lentelės."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7741,43 +7806,43 @@ msgstr ""
" ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti "
"privilegijas"
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Vartotojo duomenų bazė"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Be"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Suteikti visas privilegijas duomenų bazei „%s“"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Vartotojai turintys priėjimą prie „%s“"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globalus"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "tam tikros duomenų bazės"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "pakaitos simbolis"
@@ -8842,7 +8907,7 @@ msgstr "Sesijos reikšmė"
msgid "Global value"
msgstr "Globali reikšmė"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Parsisiųsti"
@@ -8883,55 +8948,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Nesaugus susijungimas"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Konfigūracijos laikmena"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Apžvalga"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Rodyti paslėptas žinutes (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Nėra jokių sukonfigūruotų serverių"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Naujas serveris"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Įprastinė kalba"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "leisti vartotojui pasirinkti"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Įprastinis serveris"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Eilutės galas"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Rodymas"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Įkelti"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin tinklalapis"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Paremti"
@@ -9101,9 +9178,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9218,61 +9295,61 @@ msgstr "Lentelė %1$s sėkmingai pakeista"
msgid "Function"
msgstr "Funkcija"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr "Dėl jo ilgio,
šis laukelis gali būti neredaguojamas (tinas)"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Panaikinti BLOB saugyklos rodyklę"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Dvejetainis - nekeisti"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Įkelti BLOB saugyklą"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Įterpti kaip naują įrašą"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Rodyti įterptą užklausą"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ir tada"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Sugrįžti į buvusį puslapį"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Įterpti kitą naują eilutę"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Grįžti atgal į šį puslapį"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Redaguoti kitą įrašą"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Tęstį įterpimą su %s eilučių"
@@ -9431,7 +9508,7 @@ msgstr "(\"PRIMARY\" yra vienintelis pirminio rakto tipas!)"
msgid "Add to index %s column(s)"
msgstr "Įterpti indeksui papildomus %s stulpelį(ius)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Stulpelių skaičius turi būti didesnis negu nulis."
@@ -9457,97 +9534,97 @@ msgstr "Letelė %s nukopijuota į %s."
msgid "The table name is empty!"
msgstr "Tuščias lentelės vardas!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Pakeisti lentelės rikiavimą pagal:"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(pavieniui)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Perkelti lentelę į (duomenų_bazė.lentelė):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Lentelės parinktys"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Pervadinti lentelę į"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopijuoti lentelę į (duomenų_bazė.lentelė):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Pereiti į lentelės kopiją"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Lentelės diagnostika"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentuoti lentelę"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Lentelės buferis %s išvalytas"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Išvalyti ir perkrauti lentelės podėlį (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Ištrinti duomenis arba lentelę"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Ištrinti lentelės duomenis (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Ištrinti lentelę (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Skaidinio diagnostika"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Skaidinys %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analizuoti"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Pažymėti"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimizuoti"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Perdaryti"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Taisyti"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Pašalinti skaidymą"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Patikrinti sąryšių vientisumą:"
@@ -9555,39 +9632,39 @@ msgstr "Patikrinti sąryšių vientisumą:"
msgid "Show tables"
msgstr "Rodyti lentelės"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Vietos naudojimas"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Išnaudota"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektyvus"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Eilučių statistika"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Parametrai"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "pastovus"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinaminis"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Eilutės ilgis"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Eilutės dydis"
@@ -9674,56 +9751,56 @@ msgstr "Nėra"
msgid "Column %s has been dropped"
msgstr "Stulpelis %s panaikintas"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Stulpeliui %s sukurtas PIRMINIS raktas"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Indeksas sukurtas %s stulpeliui"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Rodyti versijas"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Peržiūrėti sąryšius"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Analizuoti lentelės struktūrą"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add column(s)"
msgid "Add column"
msgstr "Pridėti stulpelį(-ius)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Lentelės pabaigoje"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Lentelės pradžioje"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Po %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Sukurti indeksą %s stulpeliams"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9751,107 +9828,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr "SQL užklausos įvykdytos."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Užkomentuokite (panaikinkite) šias dvi eilutes jeigu Jums jų nereikia."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Rinkti klaidas"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Ištrinti šios lentelės sekimo duomenis"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Nėra duomenų bazių"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL vykdymas"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Eksportuoti kaip %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Rodyti versijas"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versija"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Deaktyvuoti dabar"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Aktyvuoti dabar"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Sukurti versiją"
diff --git a/po/lv.po b/po/lv.po
index 0bab47a755..b0d2bb3c9d 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Rādīt visu"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Meklēt"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Meklēt"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Aiziet!"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Atslēgas nosaukums"
@@ -117,17 +117,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Datubāze %s tika izdzēsta."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Datubāzes komentārs: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentārs tabulai"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "Komentārs tabulai"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -148,11 +148,11 @@ msgstr "Kolonnu nosaukumi"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tips"
@@ -162,8 +162,8 @@ msgstr "Tips"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulle"
@@ -173,7 +173,7 @@ msgstr "Nulle"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Noklusēts"
@@ -196,39 +196,40 @@ msgstr "Linki uz"
msgid "Comments"
msgstr "Komentāri"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nē"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Jā"
@@ -240,8 +241,8 @@ msgstr "Drukāt"
msgid "View dump (schema) of database"
msgstr "Apskatīt datubāzes dampu (shēmu)"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Tabulas nav atrastas šajā datubāzē."
@@ -267,81 +268,81 @@ msgstr "Datubāze %s tika pārsaukta par %s"
msgid "Database %s has been copied to %s"
msgstr "Datubāze %s tika pārkopēta uz %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Pārsaukt datubāzi par"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Pārsaukt datubāzi par"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Datubāze %s tika izdzēsta."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Nav datubāzu"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopēt datubāzi uz"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tikai struktūra"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktūra un dati"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Tikai dati"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Pievienot AUTO_INCREMENT vērtību"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Pievienot ierobežojumus"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pārslēgties uz nokopēto datubāzi"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Izkārtojumi"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -353,7 +354,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:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -363,17 +364,17 @@ msgstr "Relāciju shēma"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabula"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rindas"
@@ -389,21 +390,21 @@ msgstr "lietošanā"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Izveidošana"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Pēdējā atjaunošana"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Pēdējā pārbaude"
@@ -415,101 +416,94 @@ msgid_plural "%s tables"
msgstr[0] "%s tabula(s)"
msgstr[1] "%s tabula(s)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Kārtošana"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Augošā secībā"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Dilstošā secībā"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Rādīt"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kritērijs"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ielikt"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Un"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Dzēst"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Vai"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Labot"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Pievienot/Dzēst ierakstu"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Atjaunot vaicājumu"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Lietot tabulas"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL vaicājums uz datubāzes %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
@@ -551,7 +545,7 @@ msgstr[1] "%s rezultāti tabulā %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Apskatīt"
@@ -561,14 +555,15 @@ msgstr "Apskatīt"
msgid "Delete the matches for the %s table?"
msgstr "Dati tabulai"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Dzēst"
@@ -612,17 +607,17 @@ msgstr "Tabulā(s):"
msgid "No tables found in database"
msgstr "Tabulas nav atrastas šajā datubāzē."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabula %s tika iztukšota"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Lauks %s tika izdzēsts"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabula %s tika izdzēsta"
@@ -635,11 +630,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -664,22 +659,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Ar iezīmēto:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Iezīmēt visu"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Neiezīmēt neko"
@@ -688,16 +683,16 @@ msgid "Check tables having overhead"
msgstr "Iezīmēt tabulas ar pārtēriņu"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksports"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Izdrukas versija"
@@ -709,28 +704,44 @@ msgstr "Iztukšot"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Likvidēt"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Pārbaudīt tabulu"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizēt tabulu"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Restaurēt tabulu"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizēt tabulu"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Aizvietot tabulas datus ar datiem no faila"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Aizvietot tabulas datus ar datiem no faila"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datu vārdnīca"
@@ -744,10 +755,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Datubāze"
@@ -755,37 +766,37 @@ msgstr "Datubāze"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Izveidot"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Statuss"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Darbība"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -794,11 +805,11 @@ msgstr ""
msgid "Versions"
msgstr "Persiešu"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Tikai struktūra"
@@ -807,8 +818,8 @@ msgstr "Tikai struktūra"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Pārbaudīt tabulu"
@@ -869,8 +880,8 @@ msgstr "Damps tika saglabāts failā %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -928,6 +939,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -953,261 +971,279 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda ir aizliegta."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Vai Jūs tiešām gribat "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "Procesi"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Ļauj ievietot un mainīt datus."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Formā trūkst vērtību!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Tas nav numurs!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Hosts nav norādīts!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Lietotāja vārds nav norādīts!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Parole nav norādīta!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Paroles nesakrīt!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Pievienot jaunu lietotāju"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Servera versija"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "Globālās privilēģijas"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Dzēst izvēlētos lietotājus"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Lokāls"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Labi"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Pārsaukt datubāzi par"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Pārsaukt datubāzi par"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopēt datubāzi uz"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kodējums"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Izveidot jaunu lapu"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Meklēt"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL vaicājums"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL vaicājums"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Saglabāt"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL vaicājums"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL vaicājums"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorēt"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izvēlieties, kuru lauku rādīt"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Mainīt paroli"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Uzģenerēja"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Mainīt paroli"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "P"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1215,123 +1251,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Nav datubāzu"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nav"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Iepriekšējie"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Nākamie"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kopā"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binārais"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jūn"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jūl"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1339,176 +1380,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sv"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "P"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "O"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pk"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "S"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sv"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "O"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "C"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pk"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "S"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lietošanā"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1560,34 +1601,34 @@ msgid "No index defined!"
msgstr "Nav definēti indeksi!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksi"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikālais"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalitāte"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Komentāri"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Labot"
@@ -1609,25 +1650,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Datubāzes"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Kļūda"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1635,7 +1676,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Rindas nav iezīmētas"
msgstr[1] "Rindas nav iezīmētas"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1728,8 +1769,8 @@ msgstr "Laipni lūgti %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1878,19 +1919,19 @@ msgstr "Tabulas"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dati"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Kopā"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Pārtēriņš"
@@ -1983,16 +2024,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Serveris"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Jums ir jāuzliek %s %s vai jaunāks."
@@ -2027,7 +2068,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentācija"
@@ -2175,7 +2216,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktūra"
@@ -2210,7 +2251,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "web servera augšupielādes direktorija"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama"
@@ -2381,7 +2422,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Atcelt"
@@ -2497,7 +2538,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2625,7 +2666,7 @@ msgid "Character set of the file"
msgstr "Tabulas kodējums:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formats"
@@ -2951,7 +2992,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Serveris"
@@ -3691,7 +3732,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4159,9 +4200,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Parole"
@@ -4181,8 +4222,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Lietotājvārds:"
@@ -4298,7 +4339,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4445,7 +4486,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nosaukums"
@@ -4468,8 +4509,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilēģijas"
@@ -4481,7 +4522,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4500,23 +4541,23 @@ msgstr "Serveris neatbild"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Mainīt paroli"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Nav paroles"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Atkārtojiet"
@@ -4540,7 +4581,7 @@ msgid "Create"
msgstr "Izveidot"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nav privilēģiju"
@@ -4665,8 +4706,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4686,7 +4727,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Nav"
@@ -4867,7 +4908,7 @@ msgstr "Kārtot pēc atslēgas"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Darbības"
@@ -4908,65 +4949,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Pārlūkprogrammas transformācija"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Ieraksts tika dzēsts"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Nogalināt"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "vaicājumā"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Parādu rindas"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "kopā"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Vaicājums ilga %01.4f s"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Labot"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Drukas skats (ar pilniem tekstiem)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Rādīt PDF shēmu"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Servera versija"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Links nav atrasts"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Piekļuves informācija"
@@ -5353,8 +5394,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5478,9 +5519,9 @@ msgstr "Pieejamie MIME tipi"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Hosts"
@@ -5491,7 +5532,7 @@ msgid "Generation Time"
msgstr "Izveidošanas laiks"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Servera versija"
@@ -5832,7 +5873,32 @@ msgstr "Nav"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Pk"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Nosūtīt"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Pievienot jaunu lauku"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Netika labots"
@@ -6137,8 +6203,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Lietotājvārds"
@@ -6159,7 +6225,7 @@ msgstr "Mainīgais"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Vērtība"
@@ -6177,34 +6243,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Jebkurš lietotājs"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Lietot teksta lauku"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Jebkurš hosts"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokāls"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Šis hosts"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Lietot hostu tabulu"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6268,7 +6334,7 @@ msgstr "Atribūti"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstras"
@@ -6371,12 +6437,12 @@ msgid "Toggle scratchboard"
msgstr "parādīt/noslēpt piezīmju tafeli"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6455,7 +6521,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Kalendārs"
@@ -6490,10 +6556,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Rādīt šo vaicājumu šeit atkal "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Nosūtīt"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Tikai apskatīt"
@@ -6502,7 +6564,7 @@ msgstr "Tikai apskatīt"
msgid "Location of the text file"
msgstr "Teksta faila atrašanās vieta"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web servera augšupielādes direktorija"
@@ -6553,19 +6615,19 @@ msgstr "RINDAS SĀKUMS"
msgid "END RAW"
msgstr "RINDAS BEIGAS"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Neaizvērtas pēdiņas"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Nederīgs identifikators"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Nezināmā punktuācijas zīme"
@@ -6619,7 +6681,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indekss"
@@ -6668,12 +6730,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primārā"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Pilni teksti"
@@ -6685,7 +6747,7 @@ msgid ""
msgstr "Šai transformācijai nav apraksta.
Jautājiet autoram, ko %s dara."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6693,13 +6755,13 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Pievienot %s lauku(s)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6900,82 +6962,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Galvenās relāciju īpašības"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL konekcijas kārtošana"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Galvenās relāciju īpašības"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Lietotājs"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL kodējums"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP Versija"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Parādīt PHP informāciju"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Oficiālā phpMyAdmin mājaslapa"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atribūti"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Netika labots"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6987,21 +7049,21 @@ msgstr ""
"MySQL serveris strādā ar šo noklusēto variantu, ir atvērts uzbrukumiem, un "
"Jums tiešām jāaiztaisa šis drošības caurums."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7009,24 +7071,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfigurācijas fails tagad prasa slepeno paroli (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7038,21 +7100,21 @@ msgstr ""
"Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu "
"kāpēc, klikškiniet %sšeit%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7073,13 +7135,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Mainīt datu kārtošanas laukus"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Izveidot jaunu lapu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Lūdzu izvēlieties datubāzi"
@@ -7473,78 +7535,78 @@ msgid "Includes all privileges except GRANT."
msgstr "Iekļauj visas privilēģijas, izņemot GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Ļauj mainīt esošo tabulu struktūru."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "Ļauj veidot un dzēst indeksus."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Ļauj veidot jaunas datubāzes un tabulas."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "Ļauj veidot jaunas tabulas."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Ļauj veidot jaunas tabulas."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Ļauj veidot pagaidu tabulas."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "Ļauj veidot jaunas tabulas."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Ļauj dzēst datus."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Ļauj dzēst datubāzes un tabulas."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Ļauj dzēst tabulas."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Ļauj importēt/eksportēt datus no/uz failiem."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7552,34 +7614,34 @@ msgstr ""
"pārlādēšanas."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Ļauj veidot un dzēst indeksus."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Ļauj ievietot un mainīt datus."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Ļauj bloķēt tabulas tekošajai darbībai."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7587,61 +7649,61 @@ msgstr ""
"Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko "
"lietotājs var izpildīt stundas laikā."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nedarbojas šajā MySQL versijā."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Nepieciešams replikāciju kopijām."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Ļauj lasīt datus."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Dod pieeju pilnam datubāzu sarakstam."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Ļauj apstādināt serveri."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7652,13 +7714,13 @@ msgstr ""
"citu lietotāju procesu nogalināšana."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Ļauj veidot un dzēst indeksus."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Ļauj mainīt datus."
@@ -7673,193 +7735,193 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nav"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabulu specifiskās privilēģijas"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
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:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globālās privilēģijas"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Datubāžu specifiskās privilēģijas"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administrācija"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globālās privilēģijas"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Datubāžu specifiskās privilēģijas"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resursu ierobežojumi"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Piekļuves informācija"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nemainīt paroli"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Lietotāji netika atrasti."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Lietotājs %s jau eksistē!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Jūs pievienojāt jaunu lietotāju."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Jūs modificējāt privilēģijas objektam %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Jūs atņēmāt privilēgijas lietotājam %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lietotāja %s parole tika veiksmīgi mainīta."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Dzēšam %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Pārlādējam privilēģijas"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privilēģijas tika veiksmīgi pārlādētas."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Mainīt privilēģijas"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Atsaukt"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Jebkurš"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Lietotāju pārskats"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Piešķirt"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Pievienot jaunu lietotāju"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Dzēst izvēlētos lietotājus"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Kolonnu specifiskās privilēģijas"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Pievienot privilēģijas uz sekojošo datubāzi"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Pievienot privilēģijas uz sekojošo tabulu"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
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:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... paturēt veco lietotāju."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... dzēst veco lietotāju no lietotāju tabulas."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7867,44 +7929,44 @@ msgstr ""
" ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt "
"privilēģijas."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nav"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Lietotāji, kam ir pieja datubāzei "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globāls"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "datubāzei specifisks"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "aizstājējzīme"
@@ -8926,7 +8988,7 @@ msgstr "Sesijas vērtība"
msgid "Global value"
msgstr "Globālā vērtība"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8958,57 +9020,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Labojumi tika saglabāti"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokāls"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentācija"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9235,64 +9309,64 @@ msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
msgid "Function"
msgstr "Funkcija"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Sava garuma dēļ,
šis lauks var būt nerediģējams "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binārais - netiek labots"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Ievietot kā jaunu rindu"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Atgriezties atpakaļ iepriekšējā lapā"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Ievietot vēl vienu rindu"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Atgriezties šajā lapā"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
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ā"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9454,7 +9528,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Pievienot indeksam %s kolonn(u/as)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9480,105 +9554,105 @@ msgstr "Tabula %s tika pārkopēta uz %s."
msgid "The table name is empty!"
msgstr "Tabulas nosaukums nav norādīts!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Mainīt datu kārtošanas laukus"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(atsevišķi)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Pārvietot tabulu uz (datubāze.tabula):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tabulas opcijas"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Pārsaukt tabulu uz"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopēt tabulu uz (datubāze.tabula):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Pārslēgties uz nokopēto tabulu"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabulas apkalpošana"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentēt tabulu"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabula %s tika atsvaidzināta"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Atsvaidzināt tabulu (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Dati tabulai"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Nav datubāzu"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Tabulas apkalpošana"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Čehu"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Restaurēt tabulu"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Pārbaudīt referenciālo integritāti:"
@@ -9586,39 +9660,39 @@ msgstr "Pārbaudīt referenciālo integritāti:"
msgid "Show tables"
msgstr "Rādīt tabulas"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Diska vietas lietošana"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Aizņem"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektīvs"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Rindas statistika"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Parametrs"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamisks"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Rindas garums"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Rindas izmērs "
@@ -9705,57 +9779,57 @@ msgstr "Nav"
msgid "Column %s has been dropped"
msgstr "Tabula %s tika izdzēsta"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Primārā atslēga pievienota uz lauka %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Indekss tieka pievienots uz %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Parādīt PHP informāciju"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relāciju pārskats"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Ieteikt tabulas sruktūru"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Pievienot %s lauku(s)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Tabulas beigās"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Tabulas sākumā"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Pēc %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Izveidot indeksu uz %s laukiem"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9783,109 +9857,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Vaicājuma tips"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Ļauj ievietot un mainīt datus."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Nav datubāzu"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Dati"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Persiešu"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Servera versija"
diff --git a/po/mk.po b/po/mk.po
index eaca3a099a..a3c19db906 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "прикажи ги сите"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Пребарување"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Пребарување"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Име на клуч"
@@ -117,17 +117,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Базата на податоци %s не е прифатена"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар на базата на податоци:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Коментар на табелата"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "Коментар на табелата"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -148,11 +148,11 @@ msgstr "Имиња на колони"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -162,8 +162,8 @@ msgstr "Тип"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Default"
@@ -196,39 +196,40 @@ msgstr "Врски кон"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Да"
@@ -240,8 +241,8 @@ msgstr "Печати"
msgid "View dump (schema) of database"
msgstr "Прикажи содржина (шема) на базата"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Табелите не се пронајдени во базата на податоци."
@@ -267,81 +268,81 @@ msgstr "Базата на податоци %s е преименувана во %
msgid "Database %s has been copied to %s"
msgstr "Базата на податоци %s е ископирана во %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Преименувај ја базата на податоци во"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Наредба"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Преименувај ја базата на податоци во"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Базата на податоци %s не е прифатена"
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Базата на податоци не постои"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копирај ја базата на податоци во"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Само структура"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структура и податоци"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Само податоци"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE пред копирање"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Додади AUTO_INCREMENT вредност"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Додади ограничувања"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Префрли се на копираната база на податоци"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Подредување"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -353,7 +354,7 @@ msgstr ""
"Дополнителните можности за работа со поврзаните табели се исклучени. За да "
"дознаете зошто, кликнете %sовде%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -363,17 +364,17 @@ msgstr "Релациона шема"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Табела"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Записи"
@@ -389,21 +390,21 @@ msgstr "се користи"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Направено"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Последна измена"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Последна проверка"
@@ -415,101 +416,94 @@ msgid_plural "%s tables"
msgstr[0] "%s табела"
msgstr[1] "%s табела"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Вашиот SQL упит успешно е извршен"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Морате да изберете барем една колона за приказ"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Подредуваање"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Растечки редослед"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Опаѓачки редослед"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Прикажи"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Критериум"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "и"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "или"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Промени"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Додади/избриши поле за критериум"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Додади/избриши колона"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Ажурирај"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Користи табели"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL упит на базата на податоци %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Изврши SQL"
@@ -551,7 +545,7 @@ msgstr[1] "%s погодоци во табелата %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Преглед"
@@ -561,14 +555,15 @@ msgstr "Преглед"
msgid "Delete the matches for the %s table?"
msgstr "Приказ на податоци од табелата"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "избриши"
@@ -612,17 +607,17 @@ msgstr "во табела(и):"
msgid "No tables found in database"
msgstr "Табелите не се пронајдени во базата на податоци."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Табелата %s е испразнета"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Прегледот %s е избришан"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Табелата %s е избришана"
@@ -635,11 +630,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -664,22 +659,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е основно складиште на овој MySQL сервер."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Обележаното:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "обележи ги сите"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "ниедно"
@@ -688,16 +683,16 @@ msgid "Check tables having overhead"
msgstr "табели кои имаат пречекорувања"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Извоз"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Преглед за печатење"
@@ -709,28 +704,44 @@ msgstr "Испразни"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Бриши"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Проверка на табелата"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Оптимизација на табелата"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Поправка на табелата"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Анализа на табелата"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Замени ги податоците во табелата со подаците од податотеката"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Замени ги податоците во табелата со подаците од податотеката"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Речник на податоци"
@@ -744,10 +755,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "База на податоци"
@@ -755,37 +766,37 @@ msgstr "База на податоци"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Креирај"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Статус"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Акција"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -794,11 +805,11 @@ msgstr ""
msgid "Versions"
msgstr "Персиски"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Само структура"
@@ -807,8 +818,8 @@ msgstr "Само структура"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Проверка на табелата"
@@ -869,8 +880,8 @@ msgstr "Содржината на базата на податоци е сочу
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -928,6 +939,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Вашиот SQL упит успешно е извршен"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -952,260 +970,278 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" командата е оневозможена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Дали навистина сакате да "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr ""
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Дозволува вметнување и замена на података."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Оваа операција може да потрае. Да ли да продолжиме?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Недостасува вредност во образецот!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ова не е број!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Името на host-от е празно!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Не е внесен назив на корисник!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Лозинка е празна!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Лозинките не се идентични!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Додади нов корисник"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Верзија на серверот"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "Глобални привилегии"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Избриши ги селектираните корисници"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Локален"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
msgid "Processing Request"
msgstr "Листа на процеси"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ОК"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Преименувај ја базата на податоци во"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Преименувај ја базата на податоци во"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Копирај ја базата на податоци во"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кодна страна"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Морате да изберете барем една колона за приказ"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Направи нова страница"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Пребарување"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL упит"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL упит"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Складишта"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Сочувај"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL упит"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнорирај"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Избери полиња за прикажување"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Генерирање на лозинка"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генерирај"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промена на лозинка"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1213,123 +1249,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Базата на податоци не постои"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "нема"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Следен"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Вкупно"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарен"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "мај"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1337,176 +1378,176 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "дек"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вто"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Саб"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вто"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Саб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1560,34 +1601,34 @@ msgid "No index defined!"
msgstr "Клучот не е дефиниран!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Клучеви"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Единствен"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Кардиналност"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Коментари"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
@@ -1609,25 +1650,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "База на податоци"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Грешка"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1635,7 +1676,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Нема селектирани записи"
msgstr[1] "Нема селектирани записи"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1728,8 +1769,8 @@ msgstr "%s Добредојдовте"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1879,19 +1920,19 @@ msgstr "Табели"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Податоци"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Вкупно"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Пречекорување"
@@ -1985,16 +2026,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сервер"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -2030,7 +2071,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Документација"
@@ -2180,7 +2221,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Структура"
@@ -2215,7 +2256,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "директориум за праќање на веб серверот "
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Директориумот кој го избравте за праќање не е достапен"
@@ -2386,7 +2427,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Поништи"
@@ -2502,7 +2543,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2632,7 +2673,7 @@ msgid "Character set of the file"
msgstr "Кодна страна на податотеката:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Формат"
@@ -2959,7 +3000,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Сервер"
@@ -3704,7 +3745,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4173,9 +4214,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Лозинка"
@@ -4195,8 +4236,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Корисничко име:"
@@ -4312,7 +4353,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4459,7 +4500,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Име"
@@ -4482,8 +4523,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Привилегии"
@@ -4495,7 +4536,7 @@ msgstr "Рутини"
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4516,23 +4557,23 @@ msgstr "Серверот не одговара"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Промена на лозинка"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Нема лозинка"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Повтори внес"
@@ -4556,7 +4597,7 @@ msgid "Create"
msgstr "Креирај"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Нема привилегии"
@@ -4681,8 +4722,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4702,7 +4743,7 @@ msgstr "Компресија"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "нема"
@@ -4883,7 +4924,7 @@ msgstr "Подредување по клуч"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Операции"
@@ -4924,65 +4965,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Транформации на веб прелистувачот"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Копирај"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Записот е избришан"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Прекини"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "во упитот"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Приказ на записи од "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "вкупно"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "време на извршување на упитот %01.4f секунди"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Промени"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Преглед за печатење (целосен текст)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Прикажи PDF шема"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Верзија на серверот"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Врската не е пронајдена"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Информации за верзијата"
@@ -5389,8 +5430,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5514,9 +5555,9 @@ msgstr "Достапни MIME-типови"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5527,7 +5568,7 @@ msgid "Generation Time"
msgstr "Време на креирање"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Верзија на серверот"
@@ -5869,7 +5910,32 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Пет"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Испрати"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Додади ново поле"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Нема измени"
@@ -6175,8 +6241,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Назив на корисник"
@@ -6197,7 +6263,7 @@ msgstr "Променлива"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Вредност"
@@ -6215,34 +6281,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Било кој корисник"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Користи текст поле"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Било кој host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Локален"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Овој host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Користи ја табелата на host-от"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6306,7 +6372,7 @@ msgstr "Атрибути"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Дополнително"
@@ -6409,12 +6475,12 @@ msgid "Toggle scratchboard"
msgstr "Вклучи/исклучи работна табела"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6494,7 +6560,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Изврши SQL упит(и) на базата %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Календар"
@@ -6529,10 +6595,6 @@ msgstr ""
msgid " Show this query here again "
msgstr "Прикажи го повторно овој упит"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Испрати"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Види само"
@@ -6541,7 +6603,7 @@ msgstr "Види само"
msgid "Location of the text file"
msgstr "Локација на текстуалната податотека"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "директориум за праќање на веб серверот "
@@ -6591,19 +6653,19 @@ msgstr "ПОЧЕТОК СУРОВО"
msgid "END RAW"
msgstr "КРАЈ СУРОВО"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Наводникот не е затворен"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Неисправен идентификатор"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Непознат стринг за интерпункција"
@@ -6656,7 +6718,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Клуч"
@@ -6705,12 +6767,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Примарен"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Текст клуч"
@@ -6724,7 +6786,7 @@ msgstr ""
"направил %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Вид на складиште"
@@ -6732,13 +6794,13 @@ msgstr "Вид на складиште"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Додади %s полиња"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6955,82 +7017,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Општи особини на релациите"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Колација за MySQL врска"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Општи особини на релациите"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Корисник"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL множество на знаци"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP верзија"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Прикажи информации за PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "официјален веб сајт на phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибути"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Нема измени"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7042,7 +7104,7 @@ msgstr ""
"работи со овие подесувања, отворен е за упди, и навистина треба да го "
"поправите овој сигурносен ризик."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7052,7 +7114,7 @@ msgstr ""
"опција не е компатибилна со phpMyAdmin и може да доведе до грешки во некои "
"податоци!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7062,7 +7124,7 @@ msgstr ""
"мултибајт каратер сет. Без mbstring екстензиите phpMyAdmin не може исправно "
"да ги раздвојува стринговите и тоа може да доведе до неочекувани резултати."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7070,24 +7132,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфигурациската податотека бара лозинка (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7099,21 +7161,21 @@ msgstr ""
"Дополнителните можности за работа со поврзаните табели се исклучени. За да "
"дознаете зошто, кликнете %sовде%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7134,13 +7196,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Промени го редоследот во табелата"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Направи нова страница"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Изберете база на податоци"
@@ -7534,75 +7596,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Ги вклучува сите привилегии освен GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Дозволува промена на структурата на постоечките табели."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Дозволува промена и бришење на stored рутини."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Дозволува креирање на нови бази на податоци и табели."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Дозволува креирање на stored рутини."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Дозволува креирање на нови табела."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Дозволува креирање на привремени табели..."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Дозволува креирање на нови погледи."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Дозволува бришење на податоци."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Дозволува бришење на бази на податоци и табели."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Дозволува бришење на табели."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Дозволува извршување на stored рутини."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Дозволува увоз на податоци и нивен извоз во податотеки."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7610,36 +7672,36 @@ msgstr ""
"табелата на привилегии."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Дозволува креирање и бришење на клучева."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Дозволува вметнување и замена на података."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Дозволува заклучување на табели на тековните процеси."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
"еден час."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
"Го ограничува бројот на упити кои корисникот може да ги постави на серверот "
"за еден час."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7647,8 +7709,8 @@ msgstr ""
"Го ограничува бројот на команди кои ги менуваат табелите или базите на "
"податоци кои корисникот може да ги изврши за еден час."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, fuzzy
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
@@ -7656,54 +7718,54 @@ msgstr ""
"еден час."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Нема ефект во оваа верзији на MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот "
"на серверот."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Дава права на кориснику да праша каде се главните/помошни сервери."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Потребно заради помошните сервери за репликација."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Дозволува читање на податоци."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Дава пристап на комплетната листа на базите на податоци."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Дозволува извршување на SHOW CREATE VIEW упити."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Дозволува гасење на серверот."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7714,13 +7776,13 @@ msgstr ""
"глобални променливи или прекин на процеси наостанатите корисници."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Дозволува креирање и бришење на клучева."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Дозволува измена на податоци."
@@ -7735,146 +7797,146 @@ msgctxt "None privileges"
msgid "None"
msgstr "нема"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Привилегии поврзани со табелата"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
" Напомена: MySQL имињата на привилегите мора да бидат со латинични букви "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глобални привилегии"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Привилегии во врска со базата на податоци"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Администрација"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глобални привилегии"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Привилегии во врска со базата на податоци"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ограничување на ресурси"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува "
"ограничувањата."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Податоци за најавувањето"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Немој да ја менуваш лозинката"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Корисникот не е пронајден."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Корисник %s веќе постои!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Додадовте нов корисник."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ги ажуриравте привилегиите за %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ги забранивте привилегиите за %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Лозинката за %s успешно е променета."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Бришам %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Повторно ги вчитувам привилегиите"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Изабраните корисници успешно се избришани."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Привилегиите се успешно вчитани."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Промена на привилегии"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Забрани"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Било кој"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Преглед на корисници"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Овозможи"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Додади нов корисник"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Избриши ги селектираните корисници"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
"Избриши ги базите на податоци кои се именувани исто како и корисниците."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
"табелата на привилегии. Содржината на оваа табела табела може да се "
@@ -7882,49 +7944,49 @@ msgstr ""
"измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да "
"продолжите со работа."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Изабраниот корисник не е пронајден во табелата на привилегии."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Привилегии врзани за колоните"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Додади привилегии на следната база"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Додади привилегии на следната табела"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Промени ги информациите за најавувањето / Копирај го корисникот"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Направи нов корисник со исти привилегии и ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... сочувај го стариот."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... избриши ги старите од табелата на корисници."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... прво одземи ги сите привилегии на корисниците а потоа избриши ги."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7932,44 +7994,44 @@ msgstr ""
" ... избриши го стариот корисник од табелата на корисници а потоа повторно "
"вчитај ги привилегиите."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "нема"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Провери привилегии за базата на податоци "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Корисници кои имаат пристап "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "глобално"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Специфично за базата на податоци"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "џокер"
@@ -8990,7 +9052,7 @@ msgstr "Вредност на сесијата"
msgid "Global value"
msgstr "Глобална вредност"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9022,57 +9084,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Измените се сочувани"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Локален"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin документација"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9299,7 +9373,7 @@ msgstr "Изабраните корисници успешно се избриш
msgid "Function"
msgstr "Функција"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
@@ -9307,58 +9381,58 @@ msgstr ""
"Поради големина на полето
можеби нема да може да ја менувате неговата "
"содржина"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Бинарен - не менувај"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Внеси како нов запис"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Назад на претходната страница"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Додади уште еден нов запис"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Врати се на оваа страница"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Ажурирање на следниот запис"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за "
"слободно движење"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9520,7 +9594,7 @@ msgstr "(\"PRIMARY\" може да биде име само на
msgid "Add to index %s column(s)"
msgstr "Додади во клучот %s колона(и)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9546,105 +9620,105 @@ msgstr "Табелата %s е копирана во %s."
msgid "The table name is empty!"
msgstr "Името на табелата е празно!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Промени го редоследот во табелата"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(по едно поле)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Премести ја табелата во (база.табела):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Опции на табелата"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Промени го името на табелата во "
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Копирај ја табелата во (база.табела):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Премини на копираната табела"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Можете да извршите:"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Дефрагментирај ја табелата"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Табелата %s е освежена"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Освежување на табелата (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Приказ на податоци од табелата"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Базата на податоци не постои"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Можете да извршите:"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Чешки"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Поправка на табелата"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Провери го референцијалниот интегритет:"
@@ -9652,39 +9726,39 @@ msgstr "Провери го референцијалниот интегрите
msgid "Show tables"
msgstr "Прикажи табели"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Големина"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Големина"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Ефективни"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Статистики за записите"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Име"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "динамички"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Должина на запис"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Големина на запис"
@@ -9771,57 +9845,57 @@ msgstr "нема"
msgid "Column %s has been dropped"
msgstr "Табелата %s е избришана"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Примарниот клуч %s е додаден"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Клучот е додаден %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Прикажи информации за PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Релационен поглед"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Предложи структура на табелата"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Додади %s полиња"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "на крајот од табелата"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "на почетокот од табелата"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "после полето %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Направи клуч на %s колони"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9849,109 +9923,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Вид на упит"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Дозволува вметнување и замена на података."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Базата на податоци не постои"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Податоци"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Персиски"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Верзија на серверот"
diff --git a/po/ml.po b/po/ml.po
index 50366b8460..3e042a7966 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -3,20 +3,20 @@
# This file is distributed under the same license as the phpMyAdmin package.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malayalam \n"
-"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ml\n"
"X-Generator: Translate Toolkit 1.7.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr ""
@@ -43,9 +43,9 @@ msgstr ""
msgid "Search"
msgstr ""
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -61,22 +61,22 @@ msgstr ""
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr ""
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr ""
@@ -116,17 +116,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr ""
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr ""
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -134,7 +134,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr ""
@@ -145,11 +145,11 @@ msgstr ""
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr ""
@@ -159,8 +159,8 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr ""
@@ -170,7 +170,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr ""
@@ -193,39 +193,40 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr ""
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr ""
@@ -237,8 +238,8 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr ""
@@ -264,85 +265,85 @@ msgstr ""
msgid "Database %s has been copied to %s"
msgstr ""
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr ""
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr ""
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr ""
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr ""
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr ""
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr ""
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr ""
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr ""
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr ""
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -350,17 +351,17 @@ msgstr ""
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr ""
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr ""
@@ -376,21 +377,21 @@ msgstr ""
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr ""
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr ""
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr ""
@@ -401,97 +402,90 @@ msgid_plural "%s tables"
msgstr[0] ""
msgstr[1] ""
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr ""
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr ""
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr ""
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr ""
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr ""
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr ""
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr ""
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr ""
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr ""
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr ""
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr ""
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr ""
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr ""
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr ""
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr ""
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr ""
@@ -532,7 +526,7 @@ msgstr[1] ""
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
@@ -541,14 +535,15 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr ""
@@ -587,17 +582,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr ""
@@ -610,11 +605,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -638,22 +633,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@@ -662,16 +657,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr ""
@@ -683,28 +678,40 @@ msgstr ""
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr ""
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+msgid "Replace table prefix"
+msgstr ""
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+msgid "Copy table with prefix"
+msgstr ""
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -718,10 +725,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr ""
@@ -729,36 +736,36 @@ msgstr ""
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr ""
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -766,11 +773,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -778,8 +785,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -836,8 +843,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -895,6 +902,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr ""
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -919,223 +933,237 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
-msgid "Deleting tracking data"
-msgstr ""
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
+msgid "Dropping Procedure"
msgstr ""
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr ""
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr ""
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr ""
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr ""
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr ""
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr ""
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr ""
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr ""
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr ""
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr ""
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr ""
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr ""
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr ""
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr ""
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr ""
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr ""
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr ""
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr ""
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr ""
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
msgid "Generate password"
msgstr ""
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr ""
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr ""
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1143,254 +1171,258 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+msgid "up to date"
+msgstr ""
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr ""
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr ""
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr ""
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr ""
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr ""
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr ""
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr ""
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr ""
@@ -1439,33 +1471,33 @@ msgid "No index defined!"
msgstr ""
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr ""
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr ""
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr ""
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1487,32 +1519,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1604,8 +1636,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1747,19 +1779,19 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr ""
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr ""
@@ -1840,16 +1872,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr ""
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1884,7 +1916,7 @@ msgstr ""
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr ""
@@ -2032,7 +2064,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr ""
@@ -2066,7 +2098,7 @@ msgid "Select from the web server upload directory %s:"
msgstr ""
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
@@ -2224,7 +2256,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr ""
@@ -2338,7 +2370,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2461,7 +2493,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr ""
@@ -2760,7 +2792,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
@@ -3469,7 +3501,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -3919,9 +3951,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr ""
@@ -3941,8 +3973,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4053,7 +4085,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4200,7 +4232,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr ""
@@ -4223,8 +4255,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr ""
@@ -4236,7 +4268,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4255,23 +4287,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr ""
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr ""
@@ -4293,7 +4325,7 @@ msgid "Create"
msgstr ""
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr ""
@@ -4397,8 +4429,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4416,7 +4448,7 @@ msgstr ""
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr ""
@@ -4579,7 +4611,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr ""
@@ -4612,62 +4644,62 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr ""
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr ""
@@ -5048,8 +5080,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5146,9 +5178,9 @@ msgstr ""
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr ""
@@ -5159,7 +5191,7 @@ msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr ""
@@ -5483,7 +5515,28 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+msgid "From"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr ""
@@ -5785,8 +5838,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr ""
@@ -5807,7 +5860,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr ""
@@ -5825,34 +5878,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -5914,7 +5967,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr ""
@@ -6005,12 +6058,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6083,7 +6136,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6115,10 +6168,6 @@ msgstr ""
msgid " Show this query here again "
msgstr ""
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr ""
@@ -6127,7 +6176,7 @@ msgstr ""
msgid "Location of the text file"
msgstr ""
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr ""
@@ -6166,19 +6215,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6218,7 +6267,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr ""
@@ -6259,12 +6308,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr ""
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr ""
@@ -6276,7 +6325,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6284,12 +6333,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr ""
@@ -6425,73 +6474,73 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr ""
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr ""
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr ""
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr ""
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr ""
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr ""
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr ""
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr ""
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6499,21 +6548,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6521,45 +6570,45 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6578,12 +6627,12 @@ msgstr ""
msgid "filter tables by name"
msgstr ""
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr ""
@@ -6941,163 +6990,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7105,12 +7154,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7123,225 +7172,225 @@ msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr ""
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr ""
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr ""
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr ""
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8342,7 +8391,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8374,55 +8423,65 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+msgid "Configuration saved."
+msgstr ""
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8645,60 +8704,60 @@ msgstr ""
msgid "Function"
msgstr ""
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr ""
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -8846,7 +8905,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -8872,97 +8931,97 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr ""
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr ""
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr ""
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr ""
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr ""
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr ""
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr ""
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr ""
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr ""
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr ""
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -8970,39 +9029,39 @@ msgstr ""
msgid "Show tables"
msgstr ""
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr ""
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr ""
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr ""
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr ""
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr ""
@@ -9079,52 +9138,52 @@ msgstr ""
msgid "Column %s has been dropped"
msgstr ""
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr ""
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr ""
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr ""
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr ""
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr ""
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr ""
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9152,107 +9211,127 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+msgid "Query error"
+msgstr ""
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+msgid "No data"
+msgstr ""
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 91e0a602a3..e39dbfbd81 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Бүгдийг харах"
@@ -43,9 +43,9 @@ msgstr ""
msgid "Search"
msgstr "Хайх"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -61,22 +61,22 @@ msgstr "Хайх"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Яв"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Түлхүүрийн нэр"
@@ -116,17 +116,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ӨС-ийн тайлбар: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Хүснэгтийн тайлбар"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -134,7 +134,7 @@ msgstr "Хүснэгтийн тайлбар"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -147,11 +147,11 @@ msgstr "Баганын нэрс"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Төрөл"
@@ -161,8 +161,8 @@ msgstr "Төрөл"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Хоосон"
@@ -172,7 +172,7 @@ msgstr "Хоосон"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Анхдагч"
@@ -195,39 +195,40 @@ msgstr "Холбоос"
msgid "Comments"
msgstr "Тайлбар"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Үгүй"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Тийм"
@@ -239,8 +240,8 @@ msgstr "Хэвлэх"
msgid "View dump (schema) of database"
msgstr "ӨС-ийн схем харах"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "ӨС-д хүснэгт олдсонгүй."
@@ -266,82 +267,82 @@ msgstr "ӨС %s-н нэр нь %s-ээр солигджээ"
msgid "Database %s has been copied to %s"
msgstr "ӨС %s нь %s руу хуулагдлаа"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Команд"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s өгөгдлийн сан устгагдсан."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
#| msgid "Copy database to"
msgid "Drop the database (DROP)"
msgstr "Өгөгдлийн сан хуулах нь"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Өгөгдлийн сан хуулах нь"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Зөвхөн бүтэц"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Бүтэц ба өгөгдөл"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Зөвхөн өгөгдөл"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "хуулахын өмнө CREATE DATABASE"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Нэмэх %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT утга нэмэх"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Тогтмол нэмэх"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Хуулагдсан ӨС руу шилжих"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Жишилт"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -353,7 +354,7 @@ msgstr ""
"Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s "
"дарж шалгах."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -363,17 +364,17 @@ msgstr "Хамааралтай схем"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Хүснэгт "
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Мөрүүд"
@@ -389,21 +390,21 @@ msgstr "хэрэглэгдэж байна"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Үүсгэлт"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Сүүлийн шинэчлэл"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Сүүлийн шалгалт"
@@ -415,101 +416,94 @@ msgid_plural "%s tables"
msgstr[0] "%s хүснэгт(үүд)"
msgstr[1] "%s хүснэгт(үүд)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Таны SQL-асуулт амжилттай ажиллав"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Харуулахын тулд ядаж нэг багана сонго"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Эрэмбэлэх"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Өсөхөөр"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Буурахаар"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Харах"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Хэмжүүр"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Оруулах"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "БА"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Устгах"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Эсвэл"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Өөрчлөх"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Мөр Нэмэх/устгах"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Багана нэмэх/устгах"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Update асуулт"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Хүснэгт хэрэглэх"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "ӨС %s дахь SQL-асуулт:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Асуултыг илгээх"
@@ -551,7 +545,7 @@ msgstr[1] "%s олдоц(ууд) хүснэгт %s-д"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Хөтлөх"
@@ -561,14 +555,15 @@ msgstr "Хөтлөх"
msgid "Delete the matches for the %s table?"
msgstr "Хүснэгтийн өгөгдлийг устгах"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Устгах"
@@ -612,17 +607,17 @@ msgstr "Хүснэгт(үүд) дотор:"
msgid "No tables found in database"
msgstr "ӨС-д хүснэгт олдсонгүй."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Хүснэгт %s нь хоослогдлоо"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Харц %s нь устгагдсан"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Хүснэгт %s нь устгагдлаа"
@@ -635,11 +630,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -663,22 +658,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Сонгогдсонтой:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Бүгдийг чагтлах"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Бүх чагтыг болих"
@@ -687,16 +682,16 @@ msgid "Check tables having overhead"
msgstr "Дээдхийг шалгах"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Гаргах"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Хэвлэхээр харах"
@@ -708,28 +703,44 @@ msgstr "Хоосон"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Устгах"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Хүснэгт шалгах"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Хүснэгтийг зүгшрүүлэх"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Хүснэгт засах"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Хүснэгтийг задлах"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Хүснэгтийн өгөгдлийг орлуулах файл"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Хүснэгтийн өгөгдлийг орлуулах файл"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Өгөгдлийн толь"
@@ -743,10 +754,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "ӨС"
@@ -754,36 +765,36 @@ msgstr "ӨС"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Статус"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Үйлдэл"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -791,11 +802,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -803,8 +814,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -862,8 +873,8 @@ msgstr "Асгалт %s файлд хадгалагдсан."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -921,6 +932,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Таны SQL-асуулт амжилттай ажиллав"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -945,269 +963,287 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"ӨС устгах\" нь хаалттай."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Та үнэхээр "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Процедурүүд"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Энэ үйлдэл удах янзтай. Юутай ч үргэлжлүүлэх үү?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Форм дахь утгыг орхисон!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Энэ тоо биш!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Хостын нэр хоосон!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Хэрэглэгчийн нэр хоосон!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Нууц үг хоосон байна!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Нууц їгнїїд ялгаатай байна!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Шинэ хэрэглэгч нэмэх"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create"
msgid "Create User"
msgstr "Үүсгэх"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reload privileges"
msgid "Reloading Privileges"
msgstr "Онцгой эрхүүдийг дахин дуудах"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Сонгогдсон хэрэглэгчдийг хасах"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Болих"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Процессууд"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Бэлэн"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Өгөгдлийн сан хуулах нь"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кодлол"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Хүснэгт үүсгэх"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Хайх"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "in query"
msgid "Hide query box"
msgstr "асуултад"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show query box"
msgstr "SQL асуудал харуулах"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Хөдөлгүүрүүд"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Хадгалах"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Нуух"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "in query"
msgid "Hide search criteria"
msgstr "асуултад"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "Showing SQL query"
msgid "Show search criteria"
msgstr "SQL асуудал харуулах"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Үл тоох"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Хамаарагдсан түлхүүр сонгох"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Гадаад түлхүүр сонгох"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Харуулах талбарыг соль"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Нууц үг бий болгох"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Бий болгох"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Нууц үг солих"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Да"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1215,123 +1251,129 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+#| msgid "No databases"
+msgid "up to date"
+msgstr "ӨС байхгүй"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Байхгүй"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Өмнөх"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Цааш"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Нийт"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Хоёртын "
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "3-р"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "4-р"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "5-р"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "6-р"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "7-р"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "8-р"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "10р"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1339,176 +1381,176 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "12р"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ня"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Да"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Мя"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ба"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Бя"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ня"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Да"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Мя"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Лх"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пү"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ба"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Бя"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "хэрэглэгдэж байна"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1559,33 +1601,33 @@ msgid "No index defined!"
msgstr "Индекс тодорхойлогдоогүй!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Индексүүд"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Үл давтагдах"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Ерөнхий"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Засах"
@@ -1607,25 +1649,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Алдаа"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1633,7 +1675,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Сонгогдсон мөргүй"
msgstr[1] "Сонгогдсон мөргүй"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1726,11 +1768,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
-"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
+"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
+"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1875,19 +1917,19 @@ msgstr "Хүснэгт"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Өгөгдөл"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Нийт"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Толгой дээр"
@@ -1984,16 +2026,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сервэр"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
@@ -2028,7 +2070,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Баримт"
@@ -2178,7 +2220,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Бүтэц"
@@ -2213,7 +2255,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "web-сервэр түлхэх хавтас"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна"
@@ -2383,7 +2425,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Да.эхлэх"
@@ -2499,7 +2541,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2628,7 +2670,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Тогтнол"
@@ -2949,7 +2991,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Сервэрүүд"
@@ -3688,7 +3730,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4148,9 +4190,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Нууц үг"
@@ -4170,8 +4212,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4286,7 +4328,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4435,7 +4477,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Нэр"
@@ -4458,8 +4500,8 @@ msgid "Designer"
msgstr "Дизайнч"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Онцгой эрхүүд"
@@ -4471,7 +4513,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4490,23 +4532,23 @@ msgstr "Сервэрээс хариу алга"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Нууц үг солих"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Нууц үггүй"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Дахин бич"
@@ -4530,7 +4572,7 @@ msgid "Create"
msgstr "Үүсгэх"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Онцгой эрхгүй"
@@ -4659,12 +4701,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
-"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
-"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
+"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
+"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4683,7 +4725,7 @@ msgstr "Шахалт"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Байхгүй"
@@ -4876,7 +4918,7 @@ msgstr "Түлхүүрээр эрэмбэлэх"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Сонголтууд"
@@ -4915,66 +4957,66 @@ msgstr ""
msgid "Browser transformation"
msgstr "Хөтчийн өөрчлөл"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Хуулах"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Мөр устгагдсан"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Алах"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "асуултад"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Мөрүүдийг харуулж байна "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "Нийт"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Асуулт нь %01.4f сек авлаа"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Солих"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-схем харуулах"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Үүсгэх"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Холбоос олдсонгүй"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Хувилбарын мэдээлэл"
@@ -5374,8 +5416,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5500,9 +5542,9 @@ msgstr "Идэвхтэй MIME-төрлүүд"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Хост"
@@ -5513,7 +5555,7 @@ msgid "Generation Time"
msgstr "Үүссэн цаг"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Сервэрийн хувилбар"
@@ -5853,7 +5895,32 @@ msgstr "Байхгүй"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Ба"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Илгээ"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Шинэ талбар нэмэх"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Солигдохгүй"
@@ -6158,8 +6225,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Хэрэглэгчийн нэр"
@@ -6180,7 +6247,7 @@ msgstr "Хувьсагч"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Утга"
@@ -6198,34 +6265,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Дурын хэрэглэгч"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Бичвэр талбар хэрэглэх"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Дурын хост"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Энэ хост"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Хост хүснэгт хэрэглэх"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6289,7 +6356,7 @@ msgstr "Атрибутууд"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Нэмэлт"
@@ -6392,12 +6459,12 @@ msgid "Toggle scratchboard"
msgstr "toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Үл мэдэгдэх хэл: %1$s."
@@ -6474,7 +6541,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6508,10 +6575,6 @@ msgstr "Зааглагч"
msgid " Show this query here again "
msgstr " Уг асуултыг энд дахин харуулах "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Илгээ"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Зөвхөн харах"
@@ -6520,7 +6583,7 @@ msgstr "Зөвхөн харах"
msgid "Location of the text file"
msgstr "Бичвэрфайлын байрлал"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web-сервэр түлхэх хавтас"
@@ -6570,19 +6633,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Хаагдаагүй хашилт"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Буруу тодорхойлогч"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Тэмдэгт мөрийн үл мэдэх цэг тэмдэглэл"
@@ -6636,7 +6699,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Индекс"
@@ -6684,12 +6747,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Үндсэн"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Бүтэнбичвэр"
@@ -6702,7 +6765,7 @@ msgstr ""
"Энэ өөрчлөлтөд Тайлбаргүй нь идэвхтэй.
%s-ын зохиогчийг асууна уу."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Агуулах хөдөлгүүр"
@@ -6710,13 +6773,13 @@ msgstr "Агуулах хөдөлгүүр"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s талбар(ууд) нэмэх"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6921,82 +6984,82 @@ msgstr "ZIP архив дотор файл байхгүй байна!"
msgid "Error in ZIP archive:"
msgstr "ZIP архивт байгаа алдаа:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Ерөнхий хамаатай онцлог"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL холболтын кодлол"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Ерөнхий хамаатай онцлог"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Протоколын хувилбар"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Хэрэглэгч"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-кодлол"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL клиент хувилбар"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP -ийн мэдээлэл харах"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin-ын албан ёсны вэб сайт"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибутууд"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Гаргах"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Солигдохгүй"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7007,7 +7070,7 @@ msgstr ""
"нууц үггүй) агуулжээ. Таны MySQL сервэр энэ анхдагчаар ажиллаж байгаа нь хэн "
"ч урилгагүй орох боломжийг өгнө. Та хамгаалалтын асуудлаа засах хэрэгтэй"
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7016,7 +7079,7 @@ msgstr ""
"Таны PHP тохируулгад mbstring.func_overload нээлттэй байна. Энэ сонголт "
"phpMyAdmin -д бүрэн боломжгүй бөгөөд зарим өгөгдөл алдагдаж болзошгүй!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7026,7 +7089,7 @@ msgstr ""
"mbstring extension үгүйгээр phpMyAdmin нь тэмдэгт мөрийг зөв хувааж чадахгүй "
"буюу буруу үр дүн гарч магадгүй."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7034,24 +7097,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Тохиргооны файл одоо нууцлал шаардаж байна (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7063,21 +7126,21 @@ msgstr ""
"Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s "
"дарж шалгах."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7098,14 +7161,14 @@ msgstr ""
msgid "filter tables by name"
msgstr "хүснэгтийн нэр"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Хүснэгт үүсгэх"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Өгөгдлийн сан сонго"
@@ -7496,75 +7559,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Includes all privileges except GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Шинэ харц үүсгэхийг зөвшөөрөх."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Өгөгдөл устгахыг зөвшөөрөх."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх "
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Хүснэгт устгахыг зөвшөөрөх."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7572,32 +7635,32 @@ msgstr ""
"зөвшөөрөх."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7605,58 +7668,58 @@ msgstr ""
"Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг "
"хязгаарлах."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Needed for the replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Өгөгдөл уншихыг зөвшөөрөх."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Сервэрийг унтраахыг зөвшөөрөх."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7666,12 +7729,12 @@ msgstr ""
"процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Өгөгдөл солихыг зөвшөөрөх."
@@ -7686,192 +7749,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "Байхгүй"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr " Хүснэгтийн тусгай онцгой эрхүүд"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глобал онцгой эрх"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr " Онцгой эрх, өгөгдлийн сангийн эрх"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Зохион байгуулалт"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глобал онцгой эрх"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr " Онцгой эрх, өгөгдлийн сангийн эрх"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Нөөцийн хязгаар"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Нэвтрэх мэдээлэл"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Нууц үгийг солихгүй"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Хэрэглэгч олдсонгүй."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Хэрэглэгч %s оршин байна!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Шинэ хэрэглэгч нэмэгдлээ."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, fuzzy, php-format
msgid "You have updated the privileges for %s."
msgstr "Онцгой эрх шинэчлэгдлээ"
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Онцгой эрх %s -ыг хүчингүй болголоо"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s-ы нууц үг солигдлоо."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s-г устгаж байна"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Онцгой эрхийг дахин дуудаж байна"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Сонгогдсон хэрэглэгч устгагдлаа."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Онцгой эрхүүд дахин дуудагдлаа."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Онцгой эрхүүдийг засах"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Хүчингүй"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Дурын"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "User overview"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Хандив"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Шинэ хэрэглэгч нэмэх"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Сонгогдсон хэрэглэгчдийг хасах"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй "
"болгох."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Онцгой эрх, баганын эрх"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Дараах хүснэгтэд онцгой эрх нэмэх"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... хуучныг үлдээх."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... хэрэглэгчийн хүснэгтүүдээс устгах."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7879,44 +7942,44 @@ msgstr ""
" ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин "
"дууд."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Хэрэглэгчийн өгөгдлийн сан"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Байхгүй"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Хэрэглэгчдийн хандсан нь "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Өгөгдлийн сангийн эрх"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "загвар"
@@ -8978,7 +9041,7 @@ msgstr "Сессон утга"
msgid "Global value"
msgstr "Глобал утга"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9010,55 +9073,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Өөрчлөлт хадгалагдав"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9283,64 +9358,64 @@ msgstr ""
msgid "Function"
msgstr "Функц"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Яагаад гэвэл урт нь их,
энэ талбар засагдахгүй "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Хоёртын өгөгдөл - засагдахгүй "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Шинэ мөр оруулаад"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ба тэгээд"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Буцах"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Өөр шинэ мөр оруулах"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Энэ хуудас руу буцах"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Дараагийн мөрийг засах"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар "
"зөөгдөнө"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9501,7 +9576,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Индекст нэмэх %s багана(ууд)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Баганы тоо тэгээс их байна."
@@ -9527,103 +9602,103 @@ msgstr "%s хүснэгт %s руу хуулагдлаа."
msgid "The table name is empty!"
msgstr "Хүснэгтийн нэр хоосон байна!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(дан)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Хүснэгтийг зөөх (өгөгдлийн сан.хүснэгт):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Хүснэгтийн сонголтууд"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Хүснэгтийг да.нэрлэх"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Хуулагдсан хүснэгт рүү шилжих"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Хүснэгтийн ашиглалт"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Хүснэгт янзлах"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Хүснэгт %s нь flushed боллоо"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Flush the table (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Хүснэгтийн өгөгдлийг устгах"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
msgstr "Өгөгдлийн сан хуулах нь"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Үнэн зөв өгөгдлийг шалгах:"
@@ -9631,39 +9706,39 @@ msgstr "Үнэн зөв өгөгдлийг шалгах:"
msgid "Show tables"
msgstr "Хүснэгтүүдийг харуулах"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Ашиглалтын зай"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Ашиглалт"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Эффекттэй"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Мөрийн статистик"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Баримтжуулал"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "динамик"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Мөрийн урт"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Мөрийн хэмжээ "
@@ -9749,57 +9824,57 @@ msgstr "Байхгүй"
msgid "Column %s has been dropped"
msgstr "Хүснэгт %s нь устгагдлаа"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "%s-д үндсэн түлхүүр нэмэгдлээ"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "%s-д индекс нэмэгдсэн байна"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "PHP -ийн мэдээлэл харах"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Хамаарал харах"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Хүснэгтийн бүтцийг таниулах"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "%s талбар(ууд) нэмэх"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Хүснэгтийн төгсгөлд"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Хүснэгтийн эхэнд"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s-ы дараа"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr " %s багануудад индекс үүсгэх"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9827,107 +9902,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Асуултын төрөл"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "ӨС байхгүй"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
@@ -10005,8 +10106,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд"
-#~ "%s дарж шалгах."
+#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%"
+#~ "s дарж шалгах."
#~ msgid "Ignore duplicate rows"
#~ msgstr "Давхардсан мөрүүдийг алгасах"
diff --git a/po/ms.po b/po/ms.po
index 6ae4fd71e0..3cf7bfa9cf 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Papar semua"
@@ -41,9 +41,9 @@ msgstr ""
msgid "Search"
msgstr "Cari"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -59,22 +59,22 @@ msgstr "Cari"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Pergi"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nama Kekunci"
@@ -114,18 +114,18 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "angkalan data %s telah digugurkan."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
#, fuzzy
msgid "Database comment: "
msgstr "Komen jadual"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komen jadual"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -133,7 +133,7 @@ msgstr "Komen jadual"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -146,11 +146,11 @@ msgstr "Nama Kolum"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Jenis"
@@ -160,8 +160,8 @@ msgstr "Jenis"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -171,7 +171,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Asal"
@@ -194,39 +194,40 @@ msgstr "Pautan ke"
msgid "Comments"
msgstr "Komen"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ya"
@@ -238,8 +239,8 @@ msgstr "Cetak"
msgid "View dump (schema) of database"
msgstr "Lihat longgokan (skema) pangkalan data"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Tiada jadual dijumpai pada pangkalan data."
@@ -266,82 +267,82 @@ msgstr "Jadual %s telah ditukarnama ke %s"
msgid "Database %s has been copied to %s"
msgstr "Jadual %s telah disalin ke %s."
-#: db_operations.php:399
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Tukarnama jadual ke"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Arahan"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Tukarnama jadual ke"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "angkalan data %s telah digugurkan."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Tiada pangkalan data"
-#: db_operations.php:478
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Tiada pangkalan data"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Struktur sahaja"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur dan data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Data sahaja"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr ""
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr ""
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -353,7 +354,7 @@ msgstr ""
"Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah "
"tidak diaktifkan. Untuk mengetahuinya klik %shere%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -363,17 +364,17 @@ msgstr "Skema Hubungan"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Jadual"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Baris"
@@ -389,7 +390,7 @@ msgstr "sedang digunakan"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
#, fuzzy
msgid "Creation"
msgstr "Cipta"
@@ -397,14 +398,14 @@ msgstr "Cipta"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr ""
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr ""
@@ -416,101 +417,94 @@ msgid_plural "%s tables"
msgstr[0] "%s jadual"
msgstr[1] "%s jadual"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Isih"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Menaik"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Menurun"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Papar"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Dan"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Atau"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Ubahsuai"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Tambah/Padam Baris Kriteria"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Tambah/Padam Kolum Medan"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Kemaskini Kueri"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Guna Jadual"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL- kueri pada pangkalan data %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Hantar Kueri"
@@ -552,7 +546,7 @@ msgstr[1] "%s padanan di dalam jadual %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Lungsur"
@@ -562,14 +556,15 @@ msgstr "Lungsur"
msgid "Delete the matches for the %s table?"
msgstr "Melonggok data bagi jadual"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Padam"
@@ -613,17 +608,17 @@ msgstr "Di dalam jadual:"
msgid "No tables found in database"
msgstr "Tiada jadual dijumpai pada pangkalan data."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Jadual %s telah dikosongkan"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, fuzzy, php-format
msgid "View %s has been dropped"
msgstr "Medan %s telah digugurkan"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Jadual %s telah digugurkan"
@@ -636,11 +631,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -664,22 +659,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Dengan pilihan:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Tanda Semua"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Nyahtanda Semua"
@@ -688,16 +683,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Paparan Cetak"
@@ -709,28 +704,44 @@ msgstr "Kosong"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Gugur"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Periksa Jadual"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimakan jadual"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Baiki jadual"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyze table"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Ganti data jadual dengan fail"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Ganti data jadual dengan fail"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Kamus Data"
@@ -744,10 +755,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Pangkalan Data"
@@ -755,37 +766,37 @@ msgstr "Pangkalan Data"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Cipta"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Aksi"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -794,11 +805,11 @@ msgstr ""
msgid "Versions"
msgstr "Operasi"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Struktur sahaja"
@@ -807,8 +818,8 @@ msgstr "Struktur sahaja"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Periksa Jadual"
@@ -867,8 +878,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -926,6 +937,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -952,252 +970,266 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Adakah anda ingin "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
+msgstr ""
+
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "Proses-proses"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr ""
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Kehilangan nilai pada borang! !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ini adalah bukan nombor!!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Nama hos adalah kosong!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Kata Pengenalan kosong!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Katalaluan adalah kosong!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Katalaluan tidak sama!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Tambah Pengguna Baru"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Versi Pelayan"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "Tiada Privilej"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Proses-proses"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
msgid "Renaming Databases"
msgstr "Tukarnama jadual ke"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
msgid "Reload Database"
msgstr "Tukarnama jadual ke"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
msgid "Copying Database"
msgstr "Tiada pangkalan data"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Cipta Halaman baru"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Cari"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "kueri-SQL"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "kueri-SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Simpan"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "kueri-SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "kueri-SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Abai"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Pilih Medan untuk dipapar"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Dijana oleh"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Isn"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1205,123 +1237,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Tiada pangkalan data"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Tiada"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Terdahulu"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Berikut"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jumlah"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mac"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mei"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ogos"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1329,176 +1366,176 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dis"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Aha"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Isn"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sel"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Aha"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Isn"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sel"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Rab"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Kha"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "sedang digunakan"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -1549,34 +1586,34 @@ msgid "No index defined!"
msgstr "Tiada indeks ditafrifkan!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeks"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unik"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinaliti"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Komen"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
@@ -1598,32 +1635,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "pangkalan data"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Ralat"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1715,8 +1752,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1859,19 +1896,19 @@ msgstr "Jadual-jadual"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Jumlah"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Melebihi"
@@ -1963,16 +2000,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Pelayan"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -2007,7 +2044,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentasi"
@@ -2155,7 +2192,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktur"
@@ -2190,7 +2227,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "direktori muatnaik pelayan-web"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai"
@@ -2361,7 +2398,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Ulangtetap"
@@ -2477,7 +2514,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2604,7 +2641,7 @@ msgid "Character set of the file"
msgstr "Fail bagi set Aksara:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2926,7 +2963,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Pelayan"
@@ -3655,7 +3692,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4121,9 +4158,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Katalaluan"
@@ -4143,8 +4180,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Namapengguna:"
@@ -4260,7 +4297,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4408,7 +4445,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nama"
@@ -4431,8 +4468,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilej"
@@ -4444,7 +4481,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4463,23 +4500,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Ubah Katalaluan"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Tiada Katalaluan"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ulang-taip"
@@ -4501,7 +4538,7 @@ msgid "Create"
msgstr "Cipta"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Tiada Privilej"
@@ -4625,8 +4662,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4646,7 +4683,7 @@ msgstr "Mampatan"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Tiada"
@@ -4825,7 +4862,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Operasi"
@@ -4866,65 +4903,65 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Baris telah dipadam"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Bunuh"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "pada kueri"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Papar baris"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ubah"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Papar Skema PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Versi Pelayan"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Pautan tidak dijumpai"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Informasi MasaJana"
@@ -5310,8 +5347,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5425,9 +5462,9 @@ msgstr "Paparkan Ciri-ciri"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Hos"
@@ -5438,7 +5475,7 @@ msgid "Generation Time"
msgstr "Masa dijana"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versi Pelayan"
@@ -5774,7 +5811,30 @@ msgstr "Tiada"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Jum"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Hantar"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Tiada perubahan"
@@ -6077,8 +6137,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Kata Pengenalan"
@@ -6099,7 +6159,7 @@ msgstr "Pembolehubah"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Nilai"
@@ -6118,34 +6178,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Sebarang pengguna"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Sebarang hos"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6209,7 +6269,7 @@ msgstr "Atribut"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstra"
@@ -6308,12 +6368,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6393,7 +6453,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Laksana kueri SQL pada pangkalan data %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6427,10 +6487,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Papar kueri ini di sini lagi "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Hantar"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Paparan sahaja"
@@ -6439,7 +6495,7 @@ msgstr "Paparan sahaja"
msgid "Location of the text file"
msgstr "Lokasi bagi fail teks"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "direktori muatnaik pelayan-web"
@@ -6490,19 +6546,19 @@ msgstr "MULA MENTAH"
msgid "END RAW"
msgstr "TAMAT MENTAH"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Tanda quote tidak disertakan"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Pengenalan TidakSah"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "TandaBaca tidak dikenali"
@@ -6554,7 +6610,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6602,12 +6658,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Utama"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Tekspenuh"
@@ -6619,7 +6675,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6627,12 +6683,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Tambah medan baru"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6776,82 +6832,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Ciri-ciri hubungan am"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Ciri-ciri hubungan am"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Pengguna"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Set Aksara MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "Versi PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Papar maklumat PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Laman Rasmi phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atribut"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Tiada perubahan"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6863,21 +6919,21 @@ msgstr ""
"dilaksanakan dengan pelengkapan asas, ianya terdedah kepada pencerobohan, "
"dan anda hendaklah membetulkan lubang keselamatan ini."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6885,24 +6941,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6914,21 +6970,21 @@ msgstr ""
"Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah "
"tidak diaktifkan. Untuk mengetahuinya klik %shere%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6949,13 +7005,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Alter table order by"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Cipta Halaman baru"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Sila pilih pangkalan data"
@@ -7344,106 +7400,106 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7451,59 +7507,59 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7511,12 +7567,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7532,232 +7588,232 @@ msgctxt "None privileges"
msgid "None"
msgstr "Tiada"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris "
-#: server_privileges.php:574 server_privileges.php:1635
+#: server_privileges.php:512
+msgid "Administration"
+msgstr ""
+
+#: server_privileges.php:576 server_privileges.php:1608
#, fuzzy
msgid "Global privileges"
msgstr "Tiada Privilej"
-#: server_privileges.php:576 server_privileges.php:1824
+#: server_privileges.php:578 server_privileges.php:1797
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:621
-msgid "Administration"
-msgstr ""
-
-#: server_privileges.php:641
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
#, fuzzy
msgid "Login Information"
msgstr "Informasi MasaJana"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Jangan tukar katalaluan"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Tiada pengguna dijumpai."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Anda telah menambah pengguna baru."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Anda telah mengemaskini privilej bagi %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Ubah Privilej"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "TarikBalik"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Sebarang"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
#, fuzzy
msgid "Grant"
msgstr "Cetak"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Tambah Pengguna Baru"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Tiada"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8778,7 +8834,7 @@ msgstr "Nilai Sessi"
msgid "Global value"
msgstr "Nilai Global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8810,57 +8866,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Pengubahsuaian telah disimpan"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Dokumentasi phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9087,63 +9155,63 @@ msgstr ""
msgid "Function"
msgstr "Fungsi"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Kerana kepanjangannya,
medan ini tidak boleh diedit "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binari - jgn diubah"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Selitkan baris baru"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Kembali ke muka sebelumnya"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Tambah baris yang baru"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
#, fuzzy
msgid "Go back to this page"
msgstr "Kembali ke muka sebelumnya"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9299,7 +9367,7 @@ msgstr "(\"PRIMARY\" mesti nama dan semesti dari kekunci utama!)"
msgid "Add to index %s column(s)"
msgstr "Tambah ke indeks %s kolum"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9325,104 +9393,104 @@ msgstr "Jadual %s telah disalin ke %s."
msgid "The table name is empty!"
msgstr "Nama jadual adalah kosong"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Alter table order by"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(persatu)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Pindahkan jadual ke (pangkalandata.jadual):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Tukarnama jadual ke"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Salin jadual ke (pangkalandata.jadual):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Penyenggaraan Jadual"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Jadual %s telah dibuangkan"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Buang jadual (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Melonggok data bagi jadual"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Tiada pangkalan data"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Penyenggaraan Jadual"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Baiki jadual"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Semak integriti rujukan:"
@@ -9430,39 +9498,39 @@ msgstr "Semak integriti rujukan:"
msgid "Show tables"
msgstr "Papar jadual"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Penggunaan ruang"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Penggunaan"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Berkesan"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistik Baris"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Penyataan"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Panjang baris"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Saiz baris "
@@ -9545,56 +9613,56 @@ msgstr "Tiada"
msgid "Column %s has been dropped"
msgstr "Jadual %s telah digugurkan"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Kekunci utama telah ditambah pada %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Indeks telah ditambah pada %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Papar maklumat PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Paparan Hubungan"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Cadangkan struktur jadual"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "Tambah medan baru"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Pada Akhir Jadual"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Pada Awalan Jadual"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Selepas %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Cipta indeks pada %s "
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9622,109 +9690,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Jenis Kueri"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Tiada pangkalan data"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Versi PHP"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Versi Pelayan"
diff --git a/po/nb.po b/po/nb.po
index 7e7fc08be6..7ae746039f 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
-"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Vis alle"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Søk"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Søk"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Utfør"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nøkkel"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Databasen %1$s har blitt opprettet."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Database kommentar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabellkommentarer"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "Tabellkommentarer"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolonne"
@@ -148,11 +148,11 @@ msgstr "Kolonne"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -162,8 +162,8 @@ msgstr "Type"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Standard"
@@ -196,39 +196,40 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nei"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ja"
@@ -240,8 +241,8 @@ msgstr "Skriv ut"
msgid "View dump (schema) of database"
msgstr "Vis dump (skjema) av database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Ingen tabeller i databasen."
@@ -267,78 +268,78 @@ msgstr "Databasen %s har endret navn til %s"
msgid "Database %s has been copied to %s"
msgstr "Databasen %s har blitt kopiert til %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Endre databasens navn til"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Fjern database"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databasen %s har blitt slettet"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Drop databasen (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopier databasen til"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Kun struktur"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur og data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Bare data"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE før kopiering"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Legg til %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Legg til AUTO_INCREMENT verdi"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Legg til begrensninger"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Bytt til kopiert database"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Sammenligning"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -346,7 +347,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Rediger eller eksporter relasjonsskjema"
@@ -354,17 +355,17 @@ msgstr "Rediger eller eksporter relasjonsskjema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabell"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rader"
@@ -380,21 +381,21 @@ msgstr "i bruk"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Opprettet"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Sist oppdatert"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Sist kontrollert"
@@ -405,97 +406,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabell"
msgstr[1] "%s tabeller"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Kommandoen/spørringen er utført"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Du må velge minst en kolonne for visning"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Bytt til"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "visuell bygger"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sorter"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Stigende"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Synkende"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Vis"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterier"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Sett inn"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "og"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Slett"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Eller"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Endre"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Legg til/Slett kriterierad"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Legg til/Slett kolonner"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Oppdater spørring"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Bruk tabeller"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-spørring i database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Kjør spørring"
@@ -536,7 +530,7 @@ msgstr[1] "%s treff i tabell %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Se på"
@@ -545,14 +539,15 @@ msgstr "Se på"
msgid "Delete the matches for the %s table?"
msgstr "Slett treffene for %s tabellen?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Slett"
@@ -591,17 +586,17 @@ msgstr "I kolonne:"
msgid "No tables found in database"
msgstr "Ingen tabeller funnet i databasen"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabellen %s har blitt tømt"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Visningen %s har blitt slettet"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabellen %s har blitt slettet"
@@ -614,11 +609,11 @@ msgstr "Overvåkning er aktiv."
msgid "Tracking is not active."
msgstr "Overvåkning er ikke aktiv."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -642,22 +637,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard lagringsmotor for denne MySQL tjeneren."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med avkrysset:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Merk alle"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Fjern merking"
@@ -666,16 +661,16 @@ msgid "Check tables having overhead"
msgstr "Merk overheng"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksporter"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Utskriftsvennlig forhåndsvisning"
@@ -687,28 +682,46 @@ msgstr "Tøm"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Slett"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Kontroller tabell"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiser tabell"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparer tabell"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyser tabell"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Gå til tabell"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Erstatt tabell med filen"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Erstatt tabell med filen"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dataordbok"
@@ -722,10 +735,10 @@ msgstr "Overvåkede tabeller"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Database"
@@ -733,36 +746,36 @@ msgstr "Database"
msgid "Last version"
msgstr "Siste versjon"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Opprettet"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Oppdatert"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Handling"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Slett overvåkningsdata for denne tabellen"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktiv"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "ikke aktiv"
@@ -770,11 +783,11 @@ msgstr "ikke aktiv"
msgid "Versions"
msgstr "Versjoner"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Overvåkningsrapport"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Strukturøyeblikksbilde"
@@ -782,8 +795,8 @@ msgstr "Strukturøyeblikksbilde"
msgid "Untracked tables"
msgstr "Ikke overvåkede tabeller"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Overvåk tabell"
@@ -843,8 +856,8 @@ msgstr "Dump har blitt lagret til fila %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen."
@@ -915,6 +928,13 @@ msgstr ""
"at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du "
"øker php tidsgrensen."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Kommandoen/spørringen er utført"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -939,224 +959,242 @@ msgstr "Klikk for å fjerne valg"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\"-uttrykk er avslått."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Vil du virkelig "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Du er i ferd med å SLETTE en komplett database!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Du er i ferd med å SLETTE en komplett database!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Du er i ferd med å SLETTE en komplett database!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Slipper hendelse"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Slipper prosedyre"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Slett overvåkningsdata"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Slipper primærnøkkel/indeks"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Denne operasjonen kan ta lang tid. Ønsker du å fortsette?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Du er i ferd med å SLÅ AV et BLOB lager!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Manglende verdi i skjemaet!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Dette er ikke ett tall!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Vertsnavnet er tomt!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Brukernavnet er tomt!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Passordet er blankt!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Passordene er ikke like!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Legg til en ny bruker"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Opprett bruker"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Oppfrisker privilegiene"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Fjern valgte brukere"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Lukk"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Avbryt"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Laster"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Prosessforespørsel"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Feil i prosesseringsforespørsel"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Dropper kolonne"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Legger til primærnøkkel"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Endrer databasenes navn"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Gjennlast database"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Kopierer database"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Endrer tegnsett"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tabellen må ha minst en kolonne"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Opprett tabell"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Søker"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Skjul spørringsboks"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Vis spørringsboks"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Inline Edit"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Lagre"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skjul"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Skjul søkekriterier"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Vis søkekriterier"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Velg referert nøkkel"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Velg fremmednøkkel"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Velg primærnøkkelen eller en unik nøkkel"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Velg kolonne for visning"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Legg til valg for kolonne"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Generer passord"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generer"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Endre passord"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Mer"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1166,254 +1204,260 @@ msgstr ""
"versjon er %s, utgitt den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", siste tilgjengelige versjon:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Gå til database"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Utført"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Neste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "I dag"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Januar"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Februar"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Mars"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "April"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Juni"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Juli"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "August"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "September"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Oktober"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "November"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Des"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Søndag"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Mandag"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Tirsdag"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Lør"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Søndag"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Man"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Tir"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Tor"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Uke"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Time"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minutt"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekund"
@@ -1467,33 +1511,33 @@ msgid "No index defined!"
msgstr "Ingen indeks definert!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indekser"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unik"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Pakket"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalitet"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Rediger"
@@ -1517,32 +1561,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databaser"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Feil"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rad berørt."
msgstr[1] "%1$d rader berørt."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rader slettet."
msgstr[1] "%1$d rader slettet."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1635,8 +1679,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
"kanskje bruke %1$ssetup script%2$s for å opprette en."
@@ -1785,19 +1829,19 @@ msgstr "Tabeller"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Totalt"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overheng"
@@ -1885,16 +1929,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Tjener"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du burde oppgradere til %s %s eller nyere."
@@ -1929,7 +1973,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentasjon"
@@ -2077,7 +2121,7 @@ msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktur"
@@ -2111,7 +2155,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Katalogen du anga for opplasting kan ikke nåes"
@@ -2270,7 +2314,7 @@ msgstr "Tillat brukere å endre denne verdien"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Tilbakestill"
@@ -2398,7 +2442,7 @@ msgid "Compress on the fly"
msgstr "Komprimer direkte"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfigurasjonsfil"
@@ -2527,7 +2571,7 @@ msgid "Character set of the file"
msgstr "Filas tegnsett"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2828,7 +2872,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Endre utseendet til navigasjonsrammen"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Tjenere"
@@ -3612,7 +3656,7 @@ msgstr "SweKey config fil"
msgid "Authentication method to use"
msgstr "Autentiseringsmetode som skal brukes"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Autentiseringstype"
@@ -4121,9 +4165,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Passord"
@@ -4143,8 +4187,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Brukernavn"
@@ -4268,7 +4312,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Utførlig flere utsagn"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Sjekk for siste versjon"
@@ -4421,7 +4465,7 @@ msgstr "Hendelser"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Navn"
@@ -4444,8 +4488,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegier"
@@ -4457,7 +4501,7 @@ msgstr "Rutiner"
msgid "Return type"
msgstr "Returtype"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4477,23 +4521,23 @@ msgstr "Tjeneren svarer ikke"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detaljer..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Endre passord"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Intet passord"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Gjenta"
@@ -4515,7 +4559,7 @@ msgid "Create"
msgstr "Opprett"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Ingen privilegier"
@@ -4623,8 +4667,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@@ -4645,7 +4689,7 @@ msgstr "Komprimering:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Ingen"
@@ -4834,7 +4878,7 @@ msgstr "Sorter etter nøkkel"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Innstillinger"
@@ -4871,66 +4915,66 @@ msgstr "Vis BLOB innhold"
msgid "Browser transformation"
msgstr "Nettvisertransformasjon"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Raden er slettet"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Avslutt"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "i spørring"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Viser rader "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Spørring tok %01.4f sek"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Endre"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Spørringsresultatshandlinger"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Forhåndsvisning (med all tekst)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Vis PDF-skjema"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Opprett bruker"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link ikke funnet"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versionsinformasjon"
@@ -5367,8 +5411,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5481,9 +5525,9 @@ msgstr "Vis MIME-typer"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Vert"
@@ -5494,7 +5538,7 @@ msgid "Generation Time"
msgstr "Generert den"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Tjenerversjon"
@@ -5838,7 +5882,32 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr "Konverter til Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Fre"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Send"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Apply index(s)"
+msgid "Add prefix"
+msgstr "Utfør indeks(er)"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Ingen endring"
@@ -6147,8 +6216,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Brukernavn"
@@ -6169,7 +6238,7 @@ msgstr "Variabler"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Verdi"
@@ -6189,34 +6258,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Legg til slavereplikasjonsbruker"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Alle brukere"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Bruk tekstfelt"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Alle verter"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Denne vert"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Vis vert tabell"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6282,7 +6351,7 @@ msgstr "Attributter"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstra"
@@ -6379,12 +6448,12 @@ msgid "Toggle scratchboard"
msgstr "slå av/på kladdevindu"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukjent språk: %1$s."
@@ -6457,7 +6526,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Kjør SQL spørring/spørringer mot databasen %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Fjern"
@@ -6489,10 +6558,6 @@ msgstr "Skilletegn"
msgid " Show this query here again "
msgstr " Vis denne spørring her igjen "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Send"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Bare se"
@@ -6501,7 +6566,7 @@ msgstr "Bare se"
msgid "Location of the text file"
msgstr "Plassering av filen"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "webtjener opplastingskatalog"
@@ -6553,19 +6618,19 @@ msgstr "START UFORMATERT"
msgid "END RAW"
msgstr "STOPP UFORMATERT"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Anførselstegnet er ikke lukket"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Ugyldig identifikator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Ukjent tegnsettingsstreng"
@@ -6613,7 +6678,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6623,8 +6688,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"For en liste over tilgjengelige transformasjonsvalg, klikk på "
-"%stransformasjonsbeskrivelser%s"
+"For en liste over tilgjengelige transformasjonsvalg, klikk på %"
+"stransformasjonsbeskrivelser%s"
#: libraries/tbl_properties.inc.php:143
msgid "Transformation options"
@@ -6660,12 +6725,12 @@ msgid "As defined:"
msgstr "Som definert:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primær"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltekst"
@@ -6679,7 +6744,7 @@ msgstr ""
"forfatteren hva %s gjør."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Lagringsmotor"
@@ -6687,12 +6752,12 @@ msgstr "Lagringsmotor"
msgid "PARTITION definition"
msgstr "Partisjonsdefinisjon"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Legg til %s kolonne(r)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Du må sette inn minst en kolonne."
@@ -6870,82 +6935,82 @@ msgstr "Ingen filer funnet inne i ZIP arkivet!"
msgid "Error in ZIP archive:"
msgstr "Feil i ZIP arkivet:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Generelle relasjonsegenskaper"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Kollasjon av MySQL-oppkobling"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Andre hovedinnstillinger"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Flere innstillinger"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokollversjon"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Bruker"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-tegnsett"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Webserver"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL klientversjon"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP tillegg"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Vis PHP-informasjon"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Offisiell phpMyAdmin-hjemmeside"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Attributter"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Eksporter"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Ingen endring"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6957,7 +7022,7 @@ msgstr ""
"tjener kjører med denne standardinnstillingen, er åpen for misbruk, og du "
"burde fikse dette sikkerhetshullet snarest."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6966,7 +7031,7 @@ msgstr ""
"Du har slått på mbstring.func_overload i din PHP konfigurasjon. Denne "
"opsjonen er ikke kompatibel med phpMyAdmin og kan medføre skader på data!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6976,7 +7041,7 @@ msgstr ""
"flerbyte tegnsett. Uten mbstring-tillegget så kan ikke phpMyAdmin splitte "
"strenger korrekt og dette kan medføre uønskede resultater."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6988,7 +7053,7 @@ msgstr ""
"gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging "
"utløpe raskere enn konfigurert i phpMyAdmin."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7004,12 +7069,12 @@ msgstr ""
"gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging "
"utløpe raskere enn konfigurert i phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Konfigurasjonsfila trenger nå et hemmelig passordfrase (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7019,7 +7084,7 @@ msgstr ""
"fortsatt i din phpMyAdmin mappe. Du bør fjerne den så fort phpMyAdming har "
"blitt konfigurert."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
@@ -7030,7 +7095,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7040,7 +7105,7 @@ msgstr ""
"phpMyAdmin funksjonalitet vil mangle. F.eks. navigasjonsrammen vil ikke "
"oppdatere seg automatisk."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7049,7 +7114,7 @@ msgstr ""
"Din PHP MySQL bibliotekfilversjon %s er forskjellig fra din MySQL "
"tjenerversjon %s. Dette kan forårsake uforutsett oppførsel."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7072,12 +7137,12 @@ msgstr "Filter"
msgid "filter tables by name"
msgstr "Endre tabellrekkefølge ved"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Opprett tabell"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Vennligst velg en database"
@@ -7478,75 +7543,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Inkluder alle privilegier unntatt GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Tillater endring av struktur på eksisterende tabeller."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Tillater endring og sletting av lagrede rutiner."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Tillater oppretting av nye databaser og tabeller."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Tillater oppreting av lagrede rutiner."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Tillater oppretting av nye tabeller."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Tillater oppretting av midlertidige tabeller."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Tillater oppretting av nye visninger."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Tillater sletting av data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Tillater sletting av databaser og tabeller."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Tillater sletting av tabeller."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Tillater å sette opp hendelser for hendelseskalenderen"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Tillater utføring av lagrede rutiner."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Tillater import og eksport av data til og fra filer."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7554,32 +7619,32 @@ msgstr ""
"privilegietabellene."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Tillater oppretting og sletting av indekser."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Tillater å legge til og erstatte data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Tillater låsing av tabeller for den kjørende tråden."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7587,61 +7652,61 @@ msgstr ""
"Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren "
"kan utføre per time."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Tillater visning av prosessene til alle brukere"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "har ingen effekt i denne versjonen av MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Trenges av replikasjonsslavene."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Tillater lesing av data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gir adgang til komplett liste over databaser."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Tillater utføring av SHOW CREATE VIEW spørringer."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Tillater avslutting av tjener."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7652,12 +7717,12 @@ msgstr ""
"avslutting av andre brukeres tråder."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Tillater opprettelse og sletting av triggere"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Tillater endring av data."
@@ -7670,231 +7735,231 @@ msgctxt "None privileges"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabell-spesifikke privilegier"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "OBS: MySQL privilegiumnavn er på engelsk"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globale privilegier"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Databasespesifikke privilegier"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administrasjon"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globale privilegier"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Databasespesifikke privilegier"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ressursbegrensninger"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Innlogingsinformasjon"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Ikke endre passordet"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Ingen bruker(e) funnet."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Brukeren %s finnes fra før!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Du har lagt til en ny bruker."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Du har oppdatert privilegiene til %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Du har fjernet privilegiene til %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Passordet til %s er endret."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Sletter %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Ingen brukere merket for sletting!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Oppfrisker privilegiene"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "De valgte brukerne har blitt slettet."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Oppfriskingen av privilegiene lyktes."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Rediger privilegier"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Tilbakekall"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Alle"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Brukeroversikt"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Rettighet"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Legg til en ny bruker"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Fjern valgte brukere"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Kolonne-spesifikke privilegier"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Legg til privilegier til følgende database"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Legg til privilegier til følgende tabell"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Endre innloggingsinformasjon / kopiere bruker"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Opprett ny bruker med de samme privilegier og ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... behold den gamle."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... slett den gamle fra brukertabellene."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Brukerdatabase"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Ingen"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Opprett database med samme navn og gi alle rettigheter"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Gi alle privilegier for databasen "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Brukere som har adgang til "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "databasespesifikk"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "jokertegn"
@@ -9049,7 +9114,7 @@ msgstr "Økts verdi"
msgid "Global value"
msgstr "Global verdi"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Last ned"
@@ -9095,55 +9160,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Usikker tilkobling"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Konfigurasjonslager"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Oversikt"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Vis skjulte meldinger (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Der finnes ingen konfigurerte tjenere"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Ny tjener"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Standard språk"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "la brukeren bestemme"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- ingen -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Standard tjener"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Linjeslutt"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Vis"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Last"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin hjemmeside"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Doner"
@@ -9332,8 +9409,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Hvis du føler at dette er nødvending, så bruk ekstra "
-"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id="
-"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
+"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
@@ -9344,9 +9421,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9457,64 +9534,64 @@ msgstr "Tabellen %1$s har blitt endrett"
msgid "Function"
msgstr "Funksjon"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
" På grunn av sin lengde,
så vil muligens denne kolonnen ikke være "
"redigerbar"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Fjern BLOB lager referanse"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binær - må ikke redigeres "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Last opp til BLOB lager"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Sett inn som ny rad"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Sett inn som ny rad og ignorer feil"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Viser SQL spørring"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "og så"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Returner"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Sett inn en ny post"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Tilbake til denne siden"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Rediger neste rad"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for "
"å bevege deg hvor som helst"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9678,7 +9755,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Legg til indeks %s kolonne(r)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Antall kolonner må være større enn null."
@@ -9704,101 +9781,101 @@ msgstr "Tabellen %s er kopiert til %s."
msgid "The table name is empty!"
msgstr "Tabellnavnet er tomt!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Endre tabellrekkefølge ved"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(enkeltvis)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Flytt tabell til (database.tabell):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tabellinnstillinger"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Endre tabellens navn"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopier tabell til (database.tabell):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Bytt til kopiert tabell"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabellvedlikehold"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmenter tabell"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabelen %s har blitt oppfrisket"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Oppfrisk tabellen (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Slett overvåkningsdata for denne tabellen"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Gå til database"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Partisjonsvedlikehold"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partisjon %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analyser"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Kontroller"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimaliser"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Gjenoppbygg"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Reparer"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Fjern partisjonering"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Sjekk referanseintegritet:"
@@ -9806,39 +9883,39 @@ msgstr "Sjekk referanseintegritet:"
msgid "Show tables"
msgstr "Vis tabeller"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Plassbruk"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Bruk"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Radstatistikk"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Oversikt"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statisk"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamisk"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Radlengde"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Radstørrelse "
@@ -9923,54 +10000,54 @@ msgstr "Ingen"
msgid "Column %s has been dropped"
msgstr "Kolonne %s har blitt slettet"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "En primærnøkkel har blitt lagt til %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "En indeks har blitt lagt til %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Vis versjoner"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relasjonsvisning"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Foreslå tabellstruktur"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Legg til kolonne(r)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Ved slutten av tabellen"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Ved begynnelsen av tabellen"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Etter %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Lag en indeks på %s kolonner"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partisjonert"
@@ -9998,7 +10075,7 @@ msgstr "Overvåking av %s.%s , versjon %s er aktivert."
msgid "SQL statements executed."
msgstr "SQL spørringer utført."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -10006,101 +10083,131 @@ msgstr ""
"Du kan utføre dumpen ved å opprette og bruke en midlertidig database. "
"Kontroller at du har privilegiene til å gjøre så."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Versjon %s øyeblikksbilde (SQL kode)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Spor disse datadefinisjonsspørringene:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Samle feilmeldinger"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Spor disse datamanipulasjonsspørringene:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Overvåkingsspørringer"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Slett overvåkningsdata for denne tabellen"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Ingen databaser"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Dato"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Datadefinisjonsuttrykk"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Datamanipulasjonsuttrykk"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL dump (filnedlasting)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL dump"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Dette valget vil erstatte din tabell og dataene den inneholder."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL utførelse"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Eksporter som %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Vis versjoner"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versjon"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Deaktiver overvåkning av %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Deaktiver nå"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Aktiver overvåkning av %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Aktiver nå"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Opprett versjon %s av %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Spor disse datadefinisjonsspørringene:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Spor disse datamanipulasjonsspørringene:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Opprett versjon"
diff --git a/po/nl.po b/po/nl.po
index f6649a7eda..0301b9e398 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-16 20:18+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
-"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Toon alles"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Zoeken"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Zoeken"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Start"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Sleutelnaam"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s is aangemaakt."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Database opmerking: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabelopmerkingen"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "Tabelopmerkingen"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolom"
@@ -148,11 +148,11 @@ msgstr "Kolom"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Type"
@@ -162,8 +162,8 @@ msgstr "Type"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Standaardwaarde"
@@ -196,39 +196,40 @@ msgstr "Verwijst naar"
msgid "Comments"
msgstr "Opmerkingen"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nee"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ja"
@@ -240,8 +241,8 @@ msgstr "Afdrukken"
msgid "View dump (schema) of database"
msgstr "Bekijk een dump (schema) van database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Geen tabellen gevonden in de database."
@@ -267,78 +268,78 @@ msgstr "Database %s is hernoemd naar %s"
msgid "Database %s has been copied to %s"
msgstr "Database %s is gekopieerd naar %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Hernoem database naar"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Commando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Verwijder database"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s is verwijderd."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Laat de database vervallen (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopieer database naar"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Alleen structuur"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structuur en gegevens"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Alleen data"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE voor het kopiëren"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Voeg %s toe"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Voeg AUTO_INCREMENT waarde toe"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Voeg beperkingen toe"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Overschakelen naar de gekopieerde database"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collatie"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -347,7 +348,7 @@ msgstr ""
"De phpMyAdmin configuratie-opslag is uitgeschakeld. Om te weten te komen "
"waarom klik %shier%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Bewerk of exporteer relationeel schema"
@@ -355,17 +356,17 @@ msgstr "Bewerk of exporteer relationeel schema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabel"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rijen"
@@ -381,21 +382,21 @@ msgstr "in gebruik"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Gecreëerd"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Laatst bijgewerkt"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Laatst gecontroleerd"
@@ -406,97 +407,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabel"
msgstr[1] "%s tabellen"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Uw SQL-query is succesvol uitgevoerd"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Overschakelen naar"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "visuele query opbouwer"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sorteren"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Oplopend"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Aflopend"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Toon"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criteria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Toevoegen"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "En"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Verwijder"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Of"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Aanpassen"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Toevoegen/Verwijderen criterium-rijen"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Toevoegen/Verwijderen kolommen"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Wijzig Query"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Gebruik tabellen"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-query op database %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Query uitvoeren"
@@ -537,7 +531,7 @@ msgstr[1] "%s overeenkomsten in de tabel %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Verkennen"
@@ -546,14 +540,15 @@ msgstr "Verkennen"
msgid "Delete the matches for the %s table?"
msgstr "Verwijder gevonden rijen voor de tabel %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Verwijderen"
@@ -592,17 +587,17 @@ msgstr "In de kolom:"
msgid "No tables found in database"
msgstr "Geen tabellen gevonden in de database"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s is leeg gemaakt"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "View %s is verwijderd"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s is vervallen"
@@ -615,11 +610,11 @@ msgstr "Tracking is ingeschakeld."
msgid "Tracking is not active."
msgstr "Tracking is niet actief."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
@@ -644,22 +639,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Met geselecteerd:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Selecteer alles"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Deselecteer alles"
@@ -668,16 +663,16 @@ msgid "Check tables having overhead"
msgstr "Selecteer tabellen met overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exporteer"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Afdrukken"
@@ -689,28 +684,46 @@ msgstr "Legen"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Verwijderen"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Controleer tabel"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimaliseer tabel"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Repareer tabel"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyseer tabel"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Ga naar tabel"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Vervang tabelgegevens door het bestand"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Vervang tabelgegevens door het bestand"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Data Woordenboek"
@@ -724,10 +737,10 @@ msgstr "Tabellen met tracker"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Database"
@@ -735,36 +748,36 @@ msgstr "Database"
msgid "Last version"
msgstr "Laatste versie"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Aangemaakt"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Bijgewerkt"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Actie"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Verwijder tracking data voor deze tabel"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "ingeschakeld"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "niet actief"
@@ -772,11 +785,11 @@ msgstr "niet actief"
msgid "Versions"
msgstr "Versies"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Tracking-rapport"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Structuur-snapshot"
@@ -784,8 +797,8 @@ msgstr "Structuur-snapshot"
msgid "Untracked tables"
msgstr "Tabellen zonder tracker"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Tabel tracken"
@@ -846,11 +859,11 @@ msgstr "Dump is bewaard als %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
-"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
+"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
+"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -921,6 +934,13 @@ msgstr ""
"dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsrestricties van PHP "
"worden versoepeld."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Uw SQL-query is succesvol uitgevoerd"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -947,227 +967,245 @@ msgstr "Klik om te de-selecteren"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Weet u zeker dat u dit wilt "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "U staat op het punt een complete database te VERWIJDEREN!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "U staat op het punt een complete database te VERWIJDEREN!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "U staat op het punt een complete database te VERWIJDEREN!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Gebeurtenis komt te vervallen"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Procedure komt te vervallen"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Tracking data voor deze tabel wordt verwijderd"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Primaire sleutel/index wordt verwijderd"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Deze bewerking kan lang duren. Weet u het zeker?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "U staat op het punt om een BLOB Bewaarplaats UIT TE SCHAKELEN!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"U staat op het punt om alle BLOB referenties voor database %s uit te "
"schakelen. Weet u het zeker?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Er ontbreekt een waarde in het formulier!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Dit is geen cijfer!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "De machinenaam is leeg!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "De gebruikersnaam is leeg!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Het wachtwoord is leeg!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "De wachtwoorden zijn niet gelijk!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Voeg een nieuwe gebruiker toe"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Gebruiker aanmaken"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Bezig de privileges te verversen"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Geselecteerde gebruikers worden verwijderd"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Sluiten"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Annuleren"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Laden"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Bezig met verwerken"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Fout tijdens het verwerken van de opdracht"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Kolom komt te vervallen"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Primaire sleutel wordt toegevoegd"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "Correct"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Database hernoemen"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Ververs database"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Database kopiëren"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Karakterset aanpassen"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tabel moet minimaal één kolom hebben"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Maak tabel"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Zoeken"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "SQL-query veld verbergen"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "SQL-query veld tonen"
# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen
# iets anders.
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Wijzig inline"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Opslaan"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Verberg"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Verberg zoekcriteria"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Toon zoek-criteria"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Negeer"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Selecteer de gerefereerde sleutel"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Selecteer vreemde sleutel"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Selecteer de primaire sleutel of een unieke sleutel"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Kies weer te geven veld"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Voeg een optie toe voor komom "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Genereer wachtwoord"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genereer"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Wijzig wachtwoord"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Meer"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1177,254 +1215,260 @@ msgstr ""
"overwegen. De nieuwe versie is %s, uitgebracht op %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", meest recente versie:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Ga naar database"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Klaar"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Vandaag"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "januari"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "februari"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "maart"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "april"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "mei"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "juni"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "juli"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "augustus"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "september"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "oktober"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "november"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "mei"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "zondag"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "maandag"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "dinsdag"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "woensdag"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "donderdag"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "vrijdag"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "zaterdag"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "zo"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "ma"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "di"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "do"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "vr"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "za"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "zo"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "di"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "wo"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "do"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "vr"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "za"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Week"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Uur"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuut"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Seconde"
@@ -1479,33 +1523,33 @@ msgid "No index defined!"
msgstr "Geen index gedefinieerd!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indexen"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unieke waarde"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Gecomprimeerd"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinaliteit"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Opmerking"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Wijzig"
@@ -1529,32 +1573,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databases"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fout"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rij bijgewerkt."
msgstr[1] "%1$d rijen bijgewerkt."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rij verwijderd."
msgstr[1] "%1$d rijen verwijderd."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1648,8 +1692,8 @@ msgstr "Welkom op %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
"%1$ssetup script%2$s gebruiken om een te maken."
@@ -1801,19 +1845,19 @@ msgstr "Tabellen"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Totaal"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -1903,16 +1947,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "U moet upgraden naar %s %s of hoger."
@@ -1947,7 +1991,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentatie"
@@ -2097,7 +2141,7 @@ msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Structuur"
@@ -2131,7 +2175,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Selecteer uit de web-server upload directory %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
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"
@@ -2291,7 +2335,7 @@ msgstr "Sta gebruikers toe deze waarde aan te passen"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Herstel"
@@ -2422,7 +2466,7 @@ msgid "Compress on the fly"
msgstr "Comprimeer direct"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Configuratiebestand"
@@ -2552,7 +2596,7 @@ msgid "Character set of the file"
msgstr "Karakertset voor het bestand"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Opmaak"
@@ -2854,7 +2898,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Weergave opties voor het navigatieframe"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servers"
@@ -3628,7 +3672,7 @@ msgstr "SweKey configuratiebestand"
msgid "Authentication method to use"
msgstr "De te gebruiken authenticatie methode"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Authenticatie type"
@@ -4155,9 +4199,9 @@ msgstr "Vereist dat SQL Validator geactiveerd is"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Wachtwoord"
@@ -4180,8 +4224,8 @@ msgid ""
msgstr ""
"Geef eventueel aangepaste gebruikersnaam op (standaard [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Gebruikersnaam"
@@ -4311,7 +4355,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Uitgebreide uitvoer voor meervoudigeopdrachten"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Controleer de meest recente versie"
@@ -4466,7 +4510,7 @@ msgstr "Gebeurtenissen"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Naam"
@@ -4489,8 +4533,8 @@ msgid "Designer"
msgstr "Ontwerper"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Rechten"
@@ -4502,7 +4546,7 @@ msgstr "Routines"
msgid "Return type"
msgstr "Retour type"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4525,23 +4569,23 @@ msgstr "De server reageert niet"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Details..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Wijzig wachtwoord"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Geen wachtwoord"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Type opnieuw"
@@ -4564,7 +4608,7 @@ msgid "Create"
msgstr "Aanmaken"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Geen rechten"
@@ -4670,13 +4714,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
-"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ"
-"%5$s voor meer details."
+"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5"
+"$s voor meer details."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4693,7 +4737,7 @@ msgstr "Compressie:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Geen"
@@ -4871,7 +4915,7 @@ msgstr "Sorteren op sleutel"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opties"
@@ -4904,62 +4948,62 @@ msgstr "Toon BLOB inhoud"
msgid "Browser transformation"
msgstr "Browser transformaties"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopiëren"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "De rij is verwijderd"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "stop proces"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Toon Records"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query duurde %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Veranderen"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Query resultaat bewerkingen"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Afdrukken (met volledige teksten)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Grafiek weergeven"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "VIEW aanmaken"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link niet gevonden"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versie informatie"
@@ -5412,11 +5456,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Documentatie en meer informatie over PBXT kan gevonden worden op de "
-"%sPrimeBase XT home pagina%s."
+"Documentatie en meer informatie over PBXT kan gevonden worden op de %"
+"sPrimeBase XT home pagina%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -5512,9 +5556,9 @@ msgstr "Toon beschikbare MIME-types"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Machine"
@@ -5525,7 +5569,7 @@ msgid "Generation Time"
msgstr "Genereertijd"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Serverversie"
@@ -5883,7 +5927,32 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr "Zet om naar Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "vr"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Verzenden"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Voeg index toe"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Geen verandering"
@@ -6196,8 +6265,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Gebruikersnaam"
@@ -6218,7 +6287,7 @@ msgstr "Variabelen"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Waarde"
@@ -6238,34 +6307,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Voeg slave replicatie gebruiker toe"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Een willekeurige gebruiker"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Gebruik tekstveld"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Een willekeurige machine"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "lokaal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Deze machine"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Gebruik Host Tabel"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6329,7 +6398,7 @@ msgstr "Attributen"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6422,12 +6491,12 @@ msgid "Toggle scratchboard"
msgstr "Aan/uit voorbeeldkader"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Onbekende taal: %1$s."
@@ -6500,7 +6569,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Draai SQL query/queries op database %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Clear"
@@ -6532,10 +6601,6 @@ msgstr "Scheidingsteken"
msgid " Show this query here again "
msgstr " Laat deze query hier zien "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Verzenden"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Alleen bekijken"
@@ -6544,7 +6609,7 @@ msgstr "Alleen bekijken"
msgid "Location of the text file"
msgstr "Locatie van het tekstbestand"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web-server upload directory"
@@ -6595,19 +6660,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Voeg automatisch een aanhalingsteken toe aan het einde van de query!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Quote niet afgesloten"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Ongeldig herkenningsteken"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Onbekende Punctuatie String"
@@ -6655,7 +6720,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6703,12 +6768,12 @@ msgid "As defined:"
msgstr "Als aangegeven:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primaire sleutel"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Volledige tekst"
@@ -6722,7 +6787,7 @@ msgstr ""
"maker over wat %s doet."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Opslag Engine"
@@ -6730,12 +6795,12 @@ msgstr "Opslag Engine"
msgid "PARTITION definition"
msgstr "PARTITION definitie"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Voeg %s kolom(men) toe"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "U moet minimaal een kolom toevoegen."
@@ -6918,73 +6983,73 @@ msgstr "Geen bestanden gevonden in ZIP archief!"
msgid "Error in ZIP archive:"
msgstr "Fout in ZIP-archief:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Algemene instellingen"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL verbindingscollatie"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Opmaak instellingen"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Overige instellingen"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protocolversie"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Gebruiker"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL Karakterset"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Web server"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL-client versie"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP uitbreiding"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Laat informatie over PHP zien"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Officiële phpMyAdmin Website"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Bijdragen"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Ondersteuning krijgen"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Lijst met wijzigingen"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6996,7 +7061,7 @@ msgstr ""
"met deze standaard waardes, en is open voor ongewilde toegang. Het wordt dus "
"aangeraden dit op te lossen."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7006,7 +7071,7 @@ msgstr ""
"optie is incompatibel met phpMyAdmin en kan ervoor zorgen dat sommige data "
"corrupt raakt!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7016,7 +7081,7 @@ msgstr ""
"karakterset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings "
"niet correct splitsen, wat tot onverwachte resultaten kan leiden."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7028,7 +7093,7 @@ msgstr ""
"ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie "
"eerder dan in phpMyAdmin is ingesteld."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7037,13 +7102,13 @@ msgstr ""
"ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie "
"eerder dan in phpMyAdmin is ingesteld."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Het configuratiebestand heeft nu een geheime wachtwoordzin nodig "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7053,7 +7118,7 @@ msgstr ""
"nog in de phpMyAdmin directory. Het kan beter worden verwijderd zodra "
"phpMyAdmin is geconfigureerd."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7063,7 +7128,7 @@ msgstr ""
"uitgebreide mogelijkheden zijn uitgeschakeld. Om te weten te komen waarom "
"klik %shier%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7074,7 +7139,7 @@ msgstr ""
"beschikbaar zijn. Zo zal bijvoorbeeld het navigatieframe zich niet "
"automatisch vernieuwen."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7083,7 +7148,7 @@ msgstr ""
"Uw PHP MySQL bibliotheek versie %s verschilt van uw MySQL-server versie %s. "
"Dit kan onvoorspelbaar gedrag veroorzaken."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7103,12 +7168,12 @@ msgstr "Filter"
msgid "filter tables by name"
msgstr "Filter tabellen op naam"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Maak tabel"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Selecteer A.U.B. een database"
@@ -7481,78 +7546,78 @@ msgid "Includes all privileges except GRANT."
msgstr "Bevat alle privileges behalve GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Maakt het mogelijk om stored routines aan te maken."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Maakt het mogelijk nieuwe tabellen te maken."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Maakt het mogelijk om tijdelijke tabellen te maken."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Maakt het mogelijk om nieuwe views te maken."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Maakt het mogelijk om data te verwijderen."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Maakt het mogelijk om databases en tabellen te verwijderen."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Maakt het mogelijk tabellen te verwijderen."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Maakt het mogelijk om stored routines uit te voeren."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
"Maakt het mogelijk om data te importeren en te exporteren van en naar "
"bestanden."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7560,33 +7625,33 @@ msgstr ""
"privilegestabel opnieuw op te vragen."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Maakt het mogelijk om data in te voegen en te vervangen."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Limiteert het aantal nieuwe connecties die een gebruiker per uur mag openen."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "Limiteert het aantal queries dat een gebruiker mag versturen per uur."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7594,64 +7659,64 @@ msgstr ""
"Limiteert het aantal commando's, welke een database of tabel veranderen, die "
"een gebruiker per uur mag uitvoeren."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
"Limiteert het aantal gelijktijdige verbindingen dat de gebruiker open kan "
"hebben."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Maakt het mogelijk om processen van alle gebruikers te zien"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Heeft geen effect in deze MySQL versie."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Nodig om 'slaves' te repliceren."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Maakt het lezen van data mogelijk."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Geeft toegang tot de complete lijst van databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Maakt het mogelijk om de server te stoppen."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7663,12 +7728,12 @@ msgstr ""
"van andere gebruikers."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Maakt het mogelijk om triggers maken en te verwijderen"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Maakt het mogelijk data aan te passen."
@@ -7681,144 +7746,144 @@ msgctxt "None privileges"
msgid "None"
msgstr "Geen"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabel-specifieke privileges"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
" Aantekening: de namen van de MySQL rechten zijn uitgedrukt in het Engels "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globale privileges"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Database-specifieke privileges"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administratie"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globale privileges"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Database-specifieke privileges"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resource-beperkingen"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Inloginformatie"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Wijzig het wachtwoord niet"
# Enkelvoud.
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Geen gebruiker gevonden."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "De gebruiker %s bestaat al!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "U heeft een nieuwe gebruiker toegevoegd."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "U heeft de rechten aangepast voor %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "U heeft de rechten ingetrokken voor %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Het wachtwoord voor %s is succesvol veranderd."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Verwijderen van %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Geen gebruikers geselecteerd om te verwijderen!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Bezig de privileges te verversen"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "De geselecteerde gebruikers zijn met succes verwijderd."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "De privileges zijn succesvol vernieuwd."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Wijzig rechten"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Ongedaan maken"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Elke"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Gebruikers Overzicht"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Toekennen"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Voeg een nieuwe gebruiker toe"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Verwijder de geselecteerde gebruikers"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Trek alle actieve privileges in van alle gebruikers en verwijder deze daarna."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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 "
"privileges tabel. De content van deze tabel kan verschillen met de rechten "
@@ -7826,52 +7891,52 @@ msgstr ""
"geval zijn dan moet men %sde privilege tabel vernieuwen%s voordat men verder "
"gaat."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
"De geselecteerde gebruiker werd niet aangetroffen in de privileges tabel."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Kolom-specifieke privileges"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Voeg privileges toe aan de volgende database"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Voeg privileges toe aan de volgende tabel"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Wijzig de Inlog Informatie / Kopieer gebruiker"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Maak een nieuwe gebruiker aan met dezelfde privileges en ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... behoud de oude."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... verwijder de oude van de user tabellen."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... herstel alle actieve privileges van de oude en verwijder deze daarna."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7879,42 +7944,42 @@ msgstr ""
" ... verwijder de oude van de gebruikerstabellen en vernieuw de privileges "
"achteraf."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Database voor gebruiker"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Geen"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Maak een database met dezelfde naam en geef alle rechten hierop"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Geef alle rechten op de database "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Gebruikers die toegang hebben tot "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globaal"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "database-specifiek"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "jokerteken"
@@ -9080,7 +9145,7 @@ msgstr "Sessievariabelen"
msgid "Global value"
msgstr "Globale waarde"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Download"
@@ -9121,55 +9186,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Onveilige verbinding"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Configuratie opslag"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Overzicht"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Toon verborgen berichten (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Er zijn momenteel geen servers geconfigureerd"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nieuwe server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Standaard taal"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "laat de gebruiker kiezen"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- geen -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Standaard server"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Regeleinde"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Toon"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Laden"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin homepage"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Doneer"
@@ -9440,62 +9517,62 @@ msgstr "Tabel %1$s is bijgewerkt"
msgid "Function"
msgstr "Functie"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " Vanwege z'n lengte,
is dit veld misschien niet te wijzigen "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Verwijder BLOB Bewaarplaats Referentie"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binair - niet aanpassen"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Upload naar BLOB bewaarplaats"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Voeg toe als nieuwe rij"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Voeg toe als nieuwe rij en negeer foutmeldingen"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Toon insert-query"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "en dan"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Terug"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Voeg een nieuw record toe"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Ga terug naar deze pagina"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Bewerk volgende rij"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Gebruik de TAB-knop om van waarde naar waarde te navigeren of CTRL+pijltjes "
"om vrijuit te navigeren"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Herstart invoegen met %s rijen"
@@ -9654,7 +9731,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Voeg %s kolom(men) toe aan index"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Het aantal kolommen moet groter dan nul zijn."
@@ -9680,97 +9757,97 @@ msgstr "Tabel %s is gekopieerd naar %s."
msgid "The table name is empty!"
msgstr "De tabelnaam is leeg!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Sorteer de tabel volgens"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(apart)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Verplaats tabel naar (database.tabel):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tabelopties"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Tabel hernoemen naar"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopieer tabel naar (database.tabel):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Wissel naar de gekopieerde tabel"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabelonderhoud"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmenteer tabel"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabel %s is geschoond"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Maak de tabel leeg (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Verwijder data of tabel"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Maak de tabel leeg (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Verwijder de tabel (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Partitie onderhoud"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partitie %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analyseer"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Controleer"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimaliseer"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Regenereer"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Repareer"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Verwijder partitionering"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Controleer referentiële integriteit:"
@@ -9778,39 +9855,39 @@ msgstr "Controleer referentiële integriteit:"
msgid "Show tables"
msgstr "Toon tabellen"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Ruimtegebruik"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Gebruik"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effectief"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Rij-statistiek"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Opdrachten"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statisch"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamisch"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Lengte van de rij"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Grootte van de rij "
@@ -9890,52 +9967,52 @@ msgstr "Geen"
msgid "Column %s has been dropped"
msgstr "Kolom %s is verwijderd"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Een primaire sleutel is toegevoegd aan %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Een index is toegevoegd aan %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Geef meer acties weer"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relatieoverzicht"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Tabelstructuur voorstellen"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Voeg kolom toe"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Aan het eind van de tabel"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Aan het begin van de tabel"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Na %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Maak een index aan op kolommen %s "
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "gepartitioneerd"
@@ -9963,7 +10040,7 @@ msgstr "Tracking voor %s.%s , versie %s ingeschakeld."
msgid "SQL statements executed."
msgstr "SQL-statements uitgevoerd."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9971,103 +10048,133 @@ msgstr ""
"U kunt de dump gebruiken door deze in een tijdelijke database te importeren. "
"Let er wel op dat u hier rechten voor nodig heeft."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
"De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig "
"zijn."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL-statements geëxporteerd. Kopiëer de dump of voer de dump uit."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Versie %s snapshot (SQL-code)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Deze definitie-statements tracken:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Verzamel foutmeldingen"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Deze manipulatie-statements tracken:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Tracking-statements"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Laat %s zien met datums van %s tot %s door gebruiker %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Verwijder tracking data voor deze tabel"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Geen databases"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Datum"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Definitie-statement"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Manipulatie-statement"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL-dump (naar bestand)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL-dump"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Deze optie vervangt de tabel en alle data van die tabel."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL-uitvoering"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exporteren als %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Versies weergeven"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versie"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Tracking uitschakelen voor %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Nu uitschakelen"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Tracking inschakelen voor %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Nu inschakelen"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Versie %s van %s.%s aanmaken"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Deze definitie-statements tracken:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Deze manipulatie-statements tracken:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Versie aanmaken"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index a7ac6aad26..25b1423cf9 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -6,20 +6,19 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr ""
@@ -46,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr ""
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +63,22 @@ msgstr ""
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr ""
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr ""
@@ -119,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr ""
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr ""
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +136,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr ""
@@ -148,11 +147,11 @@ msgstr ""
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr ""
@@ -162,8 +161,8 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr ""
@@ -173,7 +172,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr ""
@@ -196,39 +195,40 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr ""
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr ""
@@ -240,8 +240,8 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr ""
@@ -267,85 +267,85 @@ msgstr ""
msgid "Database %s has been copied to %s"
msgstr ""
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr ""
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr ""
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr ""
-#: db_operations.php:445
+#: db_operations.php:452
#, possible-php-format
msgid "Database %s has been dropped."
msgstr ""
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr ""
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr ""
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr ""
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, possible-php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr ""
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr ""
-#: db_operations.php:556
+#: db_operations.php:565
#, possible-php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -353,17 +353,17 @@ msgstr ""
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr ""
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr ""
@@ -379,21 +379,21 @@ msgstr ""
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr ""
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr ""
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr ""
@@ -404,97 +404,90 @@ msgid_plural "%s tables"
msgstr[0] ""
msgstr[1] ""
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr ""
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr ""
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr ""
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr ""
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr ""
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr ""
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr ""
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr ""
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr ""
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr ""
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr ""
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr ""
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr ""
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr ""
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr ""
-#: db_qbe.php:659
+#: db_qbe.php:662
#, possible-php-format
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr ""
@@ -535,7 +528,7 @@ msgstr[1] ""
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
@@ -544,14 +537,15 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr ""
@@ -590,17 +584,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, possible-php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, possible-php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, possible-php-format
msgid "Table %s has been dropped"
msgstr ""
@@ -613,11 +607,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, possible-php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -641,22 +635,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@@ -665,16 +659,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr ""
@@ -686,28 +680,40 @@ msgstr ""
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr ""
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+msgid "Replace table prefix"
+msgstr ""
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+msgid "Copy table with prefix"
+msgstr ""
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -721,10 +727,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr ""
@@ -732,36 +738,36 @@ msgstr ""
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr ""
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -769,11 +775,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -781,8 +787,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -839,8 +845,8 @@ msgstr ""
#: import.php:58
#, possible-php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -898,6 +904,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr ""
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -922,223 +935,237 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
-msgid "Deleting tracking data"
-msgstr ""
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
+msgid "Dropping Procedure"
msgstr ""
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr ""
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr ""
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, possible-php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr ""
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr ""
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr ""
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr ""
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr ""
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr ""
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr ""
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr ""
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr ""
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr ""
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr ""
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr ""
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr ""
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr ""
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr ""
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr ""
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr ""
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
msgid "Generate password"
msgstr ""
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr ""
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr ""
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, possible-php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1146,254 +1173,258 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+msgid "up to date"
+msgstr ""
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr ""
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr ""
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr ""
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr ""
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr ""
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr ""
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr ""
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr ""
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr ""
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr ""
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr ""
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr ""
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr ""
@@ -1442,33 +1473,33 @@ msgid "No index defined!"
msgstr ""
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr ""
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr ""
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr ""
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1490,32 +1521,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, possible-php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, possible-php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, possible-php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1607,8 +1638,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, possible-php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1750,19 +1781,19 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr ""
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr ""
@@ -1843,16 +1874,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr ""
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, possible-php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1887,7 +1918,7 @@ msgstr ""
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr ""
@@ -2035,7 +2066,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr ""
@@ -2069,7 +2100,7 @@ msgid "Select from the web server upload directory %s:"
msgstr ""
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
@@ -2227,7 +2258,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr ""
@@ -2341,7 +2372,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2464,7 +2495,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr ""
@@ -2763,7 +2794,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
@@ -3472,7 +3503,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -3922,9 +3953,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr ""
@@ -3944,8 +3975,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4056,7 +4087,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4203,7 +4234,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr ""
@@ -4226,8 +4257,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr ""
@@ -4239,7 +4270,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4258,23 +4289,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr ""
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr ""
@@ -4296,7 +4327,7 @@ msgid "Create"
msgstr ""
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr ""
@@ -4400,8 +4431,8 @@ msgstr ""
#, possible-php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4419,7 +4450,7 @@ msgstr ""
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr ""
@@ -4582,7 +4613,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr ""
@@ -4615,62 +4646,62 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, possible-php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr ""
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr ""
@@ -5051,8 +5082,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, possible-php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5149,9 +5180,9 @@ msgstr ""
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr ""
@@ -5162,7 +5193,7 @@ msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr ""
@@ -5486,7 +5517,28 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+msgid "From"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr ""
@@ -5788,8 +5840,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr ""
@@ -5810,7 +5862,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr ""
@@ -5828,34 +5880,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -5917,7 +5969,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr ""
@@ -6008,12 +6060,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, possible-php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6086,7 +6138,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6118,10 +6170,6 @@ msgstr ""
msgid " Show this query here again "
msgstr ""
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr ""
@@ -6130,7 +6178,7 @@ msgstr ""
msgid "Location of the text file"
msgstr ""
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr ""
@@ -6169,19 +6217,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6221,7 +6269,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr ""
@@ -6262,12 +6310,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr ""
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr ""
@@ -6279,7 +6327,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6287,12 +6335,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, possible-php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr ""
@@ -6428,73 +6476,73 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr ""
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr ""
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr ""
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr ""
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr ""
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr ""
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr ""
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr ""
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6502,21 +6550,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6524,45 +6572,45 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, possible-php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, possible-php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, possible-php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6581,12 +6629,12 @@ msgstr ""
msgid "filter tables by name"
msgstr ""
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr ""
@@ -6944,163 +6992,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7108,12 +7156,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7126,225 +7174,225 @@ msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr ""
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr ""
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr ""
-#: server_privileges.php:890
+#: server_privileges.php:860
#, possible-php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, possible-php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, possible-php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, possible-php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, possible-php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr ""
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, possible-php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, possible-php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8345,7 +8393,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8377,55 +8425,65 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+msgid "Configuration saved."
+msgstr ""
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8648,60 +8706,60 @@ msgstr ""
msgid "Function"
msgstr ""
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr ""
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, possible-php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -8849,7 +8907,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -8875,97 +8933,97 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr ""
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr ""
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr ""
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr ""
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr ""
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr ""
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, possible-php-format
msgid "Table %s has been flushed"
msgstr ""
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr ""
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr ""
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr ""
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, possible-php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -8973,39 +9031,39 @@ msgstr ""
msgid "Show tables"
msgstr ""
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr ""
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr ""
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr ""
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr ""
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr ""
@@ -9082,52 +9140,52 @@ msgstr ""
msgid "Column %s has been dropped"
msgstr ""
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, possible-php-format
msgid "A primary key has been added on %s"
msgstr ""
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, possible-php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr ""
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr ""
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr ""
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr ""
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, possible-php-format
msgid "After %s"
msgstr ""
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, possible-php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9155,107 +9213,127 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, possible-php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+msgid "Query error"
+msgstr ""
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, possible-php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+msgid "No data"
+msgstr ""
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, possible-php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, possible-php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, possible-php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, possible-php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 0cb88c87c9..1645957bea 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,22 +1,22 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: polish \n"
-"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Pokaż wszystko"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Szukaj"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Szukaj"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Wykonaj"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nazwa klucza"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza danych %1$s została utworzona."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentarz bazy danych: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentarze tabeli"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Komentarze tabeli"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolumna"
@@ -150,11 +150,11 @@ msgstr "Kolumna"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -164,8 +164,8 @@ msgstr "Typ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -175,7 +175,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Domyślnie"
@@ -198,39 +198,40 @@ msgstr "Łącze"
msgid "Comments"
msgstr "Komentarze"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nie"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Tak"
@@ -242,8 +243,8 @@ msgstr "Drukuj"
msgid "View dump (schema) of database"
msgstr "Zrzut bazy danych"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Nie znaleziono tabeli w bazie danych."
@@ -269,78 +270,78 @@ msgstr "Baza danych %s ma nazwę zmienioną na %s"
msgid "Database %s has been copied to %s"
msgstr "Baza danych %s została przekopiowana do %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Zmień nazwę bazy danych na"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Polecenie"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Usuń bazę danych"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza danych %s została usunięta."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Usuń bazę danych (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiuj bazę danych do"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tylko struktura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura i dane"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Tylko dane"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE przed przekopiowaniem"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj wartości AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Dodaj ograniczenia"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Przełącz do przekopiowanej bazy danych"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Metoda porównywania napisów"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -352,7 +353,7 @@ msgstr ""
"Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby "
"dowiedzieć się, dlaczego - kliknij %stutaj%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edytuj lub eksportuj schemat relacji"
@@ -360,17 +361,17 @@ msgstr "Edytuj lub eksportuj schemat relacji"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabela"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rekordów"
@@ -386,21 +387,21 @@ msgstr "w użyciu"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Utworzenie"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Ostatnia aktualizacja"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Ostatnie sprawdzenie"
@@ -412,99 +413,92 @@ msgstr[0] "%s tabel"
msgstr[1] "%s tabel(a)"
msgstr[2] "%s tabel"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Zapytanie SQL zostało wykonane pomyślnie"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Należy wybrać przynajmniej jedną kolumnę do wyświetlenia"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Przełącz na"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "edytor graficzny"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sortuj"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Rosnąco"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Malejąco"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Pokaż"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kryteria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Dodaj"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "oraz"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Usuń"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "lub"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modyfikacja"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Dodaj/usuń wiersz kryteriów"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Dodaj/usuń kolumny"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Zmień zapytanie"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Użyj tabel"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Zapytanie SQL dla bazy danych %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Wykonaj zapytania"
@@ -546,7 +540,7 @@ msgstr[2] "%s trafień wewnątrz tabeli %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Przeglądaj"
@@ -555,14 +549,15 @@ msgstr "Przeglądaj"
msgid "Delete the matches for the %s table?"
msgstr "Usuń wszystkie trafienia dla tabeli %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Usuń"
@@ -602,17 +597,17 @@ msgstr "Wewnątrz kolumny:"
msgid "No tables found in database"
msgstr "Nie znaleziono żadnych tabel w bazie danych."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s została opróżniona"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Widok %s został usunięty"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s została usunięta"
@@ -625,14 +620,14 @@ msgstr "Monitorowanie jest aktywne."
msgid "Tracking is not active."
msgstr "Monitorowanie nie jest aktywne."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
-"%sdocumentation%s."
+"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %"
+"sdocumentation%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -655,22 +650,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s to domyślny mechanizm składowania tego serwera MySQL."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Zaznaczone:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Zaznacz wszystkie"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Usuń zaznaczenie"
@@ -679,16 +674,16 @@ msgid "Check tables having overhead"
msgstr "Zaznacz nieoptymalne"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Widok do druku"
@@ -700,28 +695,46 @@ msgstr "Wyczyść"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Usuń"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Sprawdź tabelę"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optymalizuj tabelę"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Napraw tabelę"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizuj tabelę"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Przejdź do tabeli"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Zamiana danych tabeli z plikiem"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Zamiana danych tabeli z plikiem"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Słownik danych"
@@ -735,10 +748,10 @@ msgstr "Monitorowane tabele"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Baza danych"
@@ -746,36 +759,36 @@ msgstr "Baza danych"
msgid "Last version"
msgstr "Ostatnia wersja"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Utworzone"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Zaktualizowane"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Działanie"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Usuń dane monitorujące tę tabelę"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktywne"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "nie aktywne"
@@ -783,11 +796,11 @@ msgstr "nie aktywne"
msgid "Versions"
msgstr "Wersje"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Monitorowanie raportu"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Migawka struktury"
@@ -795,8 +808,8 @@ msgstr "Migawka struktury"
msgid "Untracked tables"
msgstr "Niemonitorowane tabele"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Monitoruj tabelę"
@@ -855,8 +868,8 @@ msgstr "Zrzut został zapisany do pliku %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
"limitu, proszę zapoznać się z %sdokumenacją%s."
@@ -926,6 +939,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Zapytanie SQL zostało wykonane pomyślnie"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -952,237 +972,255 @@ msgstr "Kliknij, aby usunąć zaznaczenie"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Polecenie \"DROP DATABASE\" jest zablokowane."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Czy na pewno wykonać "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Usuwanie Zdarzenia"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Usuwanie Procedury"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Usuwanie danych nt. śledzenia"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Usuwanie klucza podstawowego/indeksu"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Ta operacja może długo potrwać. Czy mimo to kontynuować?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Masz zamiar WYŁĄCZYĆ repozytorium BLOBów!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Czy na pewno wyłączyć wszystkie odwołania do BLOBów z bazy danych %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Brakująca wartość w formularzu!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "To nie jest liczba!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Brak nazwy hosta!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Brak nazwy użytkownika!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Puste hasło!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Hasła nie są identyczne!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Dodaj nowego użytkownika"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Utwórz użytkownika"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Przeładowanie uprawnień"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Usuń zaznaczonych użytkowników"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Zamknij"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Anuluj"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Wczytywanie"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Przetwarzanie wywołania"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Błąd przetwarzania wywołania"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Usuwanie Kolumny"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Dodawanie klucza głównego"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Zmiana nazwy bazy danych"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Przeładowanie bazy danych"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Kopiowanie bazy danych"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kodowanie napisów"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tabela musi mieć przynajmniej jedną kolumnę"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Utwórz tabelę"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Wyszukiwanie"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Ukryj okno zapytań"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Pokaż okno zapytań"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Mechanizmy"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Zachowaj"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ukryj"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Ukryj okno zapytania SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "Okno zapytania SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoruj"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Wybierz klucz odwołujący"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Wybierz klucz zewnętrzny"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Należy wybrać klucz główny lub klucz jednoznaczny"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Wybierz kolumny do wyświetlenia"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Dodaj opcję do kolumny"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Wygeneruj hasło"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generuj"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Zmień hasło"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Więcej"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1192,103 +1230,109 @@ msgstr ""
"werja to %s, wydana dnia %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", ostatnia stabiln()a wersja:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Przejdź do bazy danych"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Zakończ"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Poprzedni"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Następne"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Dzisiaj"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr " Styczeń"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Luty"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Marzec"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Kwiecień"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Maj"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Czerwiec"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Lipiec"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Sierpień"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Wrzesień"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Październik"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Listopad"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Grudzień"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Sty"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Kwi"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1296,166 +1340,166 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Cze"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Sie"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Wrz"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Paź"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Gru"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Niedziela"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Poniedziałek"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Wtorek"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Środa"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Czwartek"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Piątek"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Nie"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Wto"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Śro"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Czw"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pią"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Nie"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Wto"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Śro"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Czw"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pią"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sob"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Wk"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Godzina"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekunda"
@@ -1510,33 +1554,33 @@ msgid "No index defined!"
msgstr "Brak zdefiniowanego indeksu!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksy"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Jednoznaczny"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Spakowany"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Moc"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Komentarz"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edytuj"
@@ -1560,18 +1604,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Bazy danych"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Błąd"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -1579,7 +1623,7 @@ msgstr[0] "Zmodyfikowanych rekordów: %1$d."
msgstr[1] "Zmodyfikowanych rekordów: %1$d."
msgstr[2] "Zmodyfikowanych rekordów: %1$d."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -1587,7 +1631,7 @@ msgstr[0] "Usuniętych rekordów: %1$d."
msgstr[1] "Usuniętych rekordów: %1$d."
msgstr[2] "Usuniętych rekordów: %1$d."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1681,8 +1725,8 @@ msgstr "Witamy w %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego "
"stworzenia można użyć %1$sskryptu instalacyjnego%2$s."
@@ -1831,19 +1875,19 @@ msgstr "Tabele"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dane"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Sumarycznie"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Nadmiar"
@@ -1937,16 +1981,16 @@ msgstr ""
"Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Serwer"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Zaleca się aktualizację do %s w wersji %s lub nowszej."
@@ -1981,7 +2025,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentacja"
@@ -2133,7 +2177,7 @@ msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktura"
@@ -2168,7 +2212,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "katalog serwera WWW dla uploadu"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików"
@@ -2337,7 +2381,7 @@ msgstr "Zezwól użytkownikom na zmianę tej wartości"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Resetuj"
@@ -2460,7 +2504,7 @@ msgid "Compress on the fly"
msgstr "Kompresuj w locie"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Plik konfiguracyjny"
@@ -2594,7 +2638,7 @@ msgid "Character set of the file"
msgstr "Kodowanie pliku"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2911,7 +2955,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Dostosuj wygląd ramki nawigacji"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Serwery"
@@ -3700,7 +3744,7 @@ msgstr "Plik konfiguracyjny SweKey"
msgid "Authentication method to use"
msgstr "Jaka metoda uwierzytelniania ma być użyta"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Typ uwierzytelniania"
@@ -4220,9 +4264,9 @@ msgstr "Wymaga włączenia walidatora SQL"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Hasło"
@@ -4246,8 +4290,8 @@ msgstr ""
"Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie [kbd]anonymous"
"[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Nazwa użytkownika"
@@ -4378,7 +4422,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Szczegóły wielokrotnych instrukcji"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Sprawdź, czy jest nowsza wersja"
@@ -4537,7 +4581,7 @@ msgstr "Zdarzenia"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nazwa"
@@ -4560,8 +4604,8 @@ msgid "Designer"
msgstr "Widok projektu"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Uprawnienia"
@@ -4573,7 +4617,7 @@ msgstr "Procedury i funkcje"
msgid "Return type"
msgstr "Zwracany typ"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4597,23 +4641,23 @@ msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Szczegóły…"
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Zmień hasło"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Brak hasła"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ponownie"
@@ -4637,7 +4681,7 @@ msgid "Create"
msgstr "Utwórz"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Brak uprawnień"
@@ -4768,8 +4812,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć "
"jej napisów formatujących. Dodatkowo zostaną zastosowane następujące "
@@ -4792,7 +4836,7 @@ msgstr "Typ kompresji"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Brak"
@@ -4996,7 +5040,7 @@ msgstr "Sortuj wg klucza"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opcje"
@@ -5035,65 +5079,65 @@ msgstr "Pokaż zawartość BLOB"
msgid "Browser transformation"
msgstr "Sposób prezentacji danych"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopiuj"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Rekord został skasowany"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Unicestwij"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "w zapytaniu"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Pokaż rekordy "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "wszystkich"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Wykonanie zapytania trwało %01.4f sekund(y)"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Zmień"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operacja na wynikach zapytania"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Widok do druku (z pełnymi tekstami)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Wyświetl schemat PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Utwórz związek"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Łącze nie znalezione"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informacja o wersji"
@@ -5533,8 +5577,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5654,9 +5698,9 @@ msgstr "Dostępne typy MIME"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5667,7 +5711,7 @@ msgid "Generation Time"
msgstr "Czas wygenerowania"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Wersja serwera"
@@ -6020,7 +6064,32 @@ msgstr "Brak"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Pią"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Wyślij"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Apply index(s)"
+msgid "Add prefix"
+msgstr "Dołącz indeks(y)"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Bez zmian"
@@ -6329,8 +6398,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nazwa użytkownika"
@@ -6351,7 +6420,7 @@ msgstr "Zmienna"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Wartość"
@@ -6371,34 +6440,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Dodaj użytkownika replikacji na serwerze podrzędnym"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Dowolny użytkownik"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Użyj pola tekstowego"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Dowolny host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Host lokalny"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ten host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Użyj tabeli hostów"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6466,7 +6535,7 @@ msgstr "Atrybuty"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Dodatkowo"
@@ -6569,12 +6638,12 @@ msgid "Toggle scratchboard"
msgstr "włącz / wyłącz scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nieznany język: %1$s."
@@ -6651,7 +6720,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Wyczyść"
@@ -6685,10 +6754,6 @@ msgstr "Separator"
msgid " Show this query here again "
msgstr " Wywołaj ponownie zapytanie "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Wyślij"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Tylko pokaż"
@@ -6697,7 +6762,7 @@ msgstr "Tylko pokaż"
msgid "Location of the text file"
msgstr "Lokalizacja pliku tekstowego"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "katalog serwera WWW do przesyłania plików"
@@ -6749,19 +6814,19 @@ msgstr "SUROWE DANE STĄD"
msgid "END RAW"
msgstr "SUROWE DANE DOTĄD"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Niezamknięty cudzysłów"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Nieprawidłowy identyfikator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Nieznany znak przestankowy"
@@ -6772,8 +6837,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
-"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
-"%sdokumentacji%s."
+"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
+"sdokumentacji%s."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6817,7 +6882,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6827,8 +6892,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
-"%sopisy transformacji%s"
+"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
+"sopisy transformacji%s"
#: libraries/tbl_properties.inc.php:143
msgid "Transformation options"
@@ -6866,12 +6931,12 @@ msgid "As defined:"
msgstr "Zdefiniowana następująco:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Podstawowy"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Pełny tekst"
@@ -6883,7 +6948,7 @@ msgid ""
msgstr "Transformacja ta nie ma opisu.
Proszę zapytać autora, co robi %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Mechanizm składowania"
@@ -6891,13 +6956,13 @@ msgstr "Mechanizm składowania"
msgid "PARTITION definition"
msgstr "Definicja partycji"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Dodaj %s pól"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7126,84 +7191,84 @@ msgstr "Archiwum ZIP jest puste!"
msgid "Error in ZIP archive:"
msgstr "Błąd w archiwum ZIP:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Ogólne funkcje relacyjne"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "System porównań dla połączenia MySQL"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Inne kluczowe ustawienia"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "Other core settings"
msgid "More settings"
msgstr "Inne kluczowe ustawienia"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Wersja protokołu"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Użytkownik"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Kodowanie napisów dla MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Serwer WWW"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Wersja klienta MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Rozszerzenie PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Informacje o PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Oficjalna strona phpMyAdmina"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atrybuty"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Eksport"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Bez zmian"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7215,7 +7280,7 @@ msgstr ""
"działa z takim ustawieniem, jest otwarty dla włamywaczy. Ta luka w "
"bezpieczeństwie naprawdę powinna zostać naprawiona."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7224,7 +7289,7 @@ msgstr ""
"Opcja mbstring.func_overload jest włączona w pliku konfiguracyjnym PHP. Jest "
"ona niezgodna z phpMyAdminem i może powodować utratę niektórych danych!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7235,7 +7300,7 @@ msgstr ""
"phpMyAdmin nie ma możliwości poprawnego rozbijania napisów, co może "
"skutkować niespodziewanymi rezultatami."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7247,7 +7312,7 @@ msgstr ""
"czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu "
"sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7263,12 +7328,12 @@ msgstr ""
"czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu "
"sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Plik konfiguracyjny wymaga teraz tajnej frazy kodującej (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7278,7 +7343,7 @@ msgstr ""
"Będzie on nadal znajdował się w katalogu phpMyAdmina. Możesz go usunąć po "
"skonfigurowaniu phpMyAdmina."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7290,14 +7355,14 @@ msgstr ""
"Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby "
"dowiedzieć się, dlaczego - kliknij %stutaj%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7306,14 +7371,14 @@ msgstr ""
"Wersja %s biblioteki MySQL dla PHP różni się od wersji %s serwera MySQL. "
"Może to powodować nieprzewidywalne zachowanie."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
-"%s."
+"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
+"s."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
msgid "No databases"
@@ -7329,14 +7394,14 @@ msgstr "Filtr"
msgid "filter tables by name"
msgstr "Sortowanie tabeli wg"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Utwórz tabelę"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Proszę wybrać bazę danych"
@@ -7735,75 +7800,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Wszystkie uprawnienia, oprócz GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Pozwól zmieniać strukturę istniejących tabel."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Pozwól modyfikować i usuwać procedury składowane."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Pozwól tworzyć nowe bazy danych i tabele."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Pozwól tworzyć procedury składowane."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Pozwól tworzyć nowe tabele."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Pozwala tworzyć tabele tymczasowe."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Pozwól tworzyć widoki."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Pozwól usuwać dane."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Pozwól usuwać bazy danych i tabele."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Pozwól usuwać tabele."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Pozwól wykonywać procedury składowane."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Pozwól importować i eksportować dane z/do plików."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7811,34 +7876,34 @@ msgstr ""
"uprawnień."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Pozwól tworzyć i usuwać indeksy."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Pozwól dodawać i zamieniać dane."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Pozwól blokować tabele dla aktualnego wątku."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7846,60 +7911,60 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Pozwól oglądać procesy wszystkich użytkowników"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nie ma żadnych skutków w tej wersji MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Potrzebne dla replikacji serwera podrzędnego."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Pozwól czytać dane."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Daj dostęp do pełnej listy baz danych."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Pozwól wyłączyć serwer."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7910,12 +7975,12 @@ msgstr ""
"ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Pozwól tworzyć i usuwać wyzwalacze."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Pozwól zmieniać dane."
@@ -7930,239 +7995,239 @@ msgctxt "None privileges"
msgid "None"
msgstr "Brak"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Uprawnienia specyficzne dla tabel"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globalne uprawnienia"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Uprawnienia specyficzne dla baz danych"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administracja"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globalne uprawnienia"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Uprawnienia specyficzne dla baz danych"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ograniczenia zasobów"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Dane użytkownika"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nie zmieniaj hasła"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nie znaleziono użytkownika(ów)."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Użytkownik %s już istnieje!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Nowy użytkownik został dodany."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Uaktualniłeś uprawnienia dla %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Uprawnienia dla %s zostały cofnięte"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Hasło dla %s zostało pomyślnie zmienione."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Usuwanie %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Przeładuj uprawnienia"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Wybrani użytkownicy zostali pomyślnie usunięci."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Uprawnienia zostały pomyślnie przeładowane."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Edytuj uprawnienia"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Cofnij"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Dowolny"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Opis użytkownika"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Nadawanie"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Dodaj nowego użytkownika"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Usuń zaznaczonych użytkowników"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Uprawnienia specyficzne dla kolumn"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Dodaj uprawnienia dla następującej bazy danych"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Aby użyć symboli wieloznacznych _ i % w znaczeniu dosłownym, należy je "
"poprzedzić znakiem \\ "
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Dodaj uprawnienia dla następującej tabeli"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Zmień dane użytkownika / Kopiuj użytkownika"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …"
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "… pozostaw starego."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " … usuń starego z tabel użytkowników."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " … odbierz wszystkie aktywne uprawnienia staremu, a następnie go usuń."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" … usuń starego z tabel użytkowników, a następnie przeładuj uprawnienia."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Baza danych dla użytkownika"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Brak"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
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:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Przyznanie wszystkich uprawnień do bazy danych "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Użytkownicy mający dostęp do "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globalnie"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "specyficzne dla bazy danych"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "znak wieloznaczny"
@@ -9325,7 +9390,7 @@ msgstr "Wartość sesji"
msgid "Global value"
msgstr "Wartość globalna"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Ściągnij"
@@ -9371,55 +9436,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Niezabezpieczone połączenie"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration"
+msgid "Configuration saved."
+msgstr "Konfiguracja"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Opcje podstawowe"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Pokaż ukryte wiadomości (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Brak skonfigurowanych serwerów"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nowy serwer"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Domyślny język"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "wybór pozostawiony użytkownikowi"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- brak -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Domyślny serwer"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Koniec linii"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Pokaż"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Załaduj"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Strona główna phpMyAdmina"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Przekazanie darowizny"
@@ -9607,8 +9684,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień "
-"bezpieczeństwa — [a@?page=servers&mode=edit&id="
-"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
+"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
"page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/"
"a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli "
"używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników."
@@ -9619,9 +9696,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9735,65 +9812,65 @@ msgstr "Tabela %1$s została pomyślnie zmodyfikowana"
msgid "Function"
msgstr "Funkcja"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " To pole może nie dać się edytować
z powodu swojej długości "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Usuń odołanie do repozytorium BLOBów"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binarne - nie do edycji "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Prześlij do repozytorium BLOBów"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Dodaj jako nowy rekord"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Wyświetlane jest zapytanie SQL."
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "a następnie"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Wróć"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Dodaj nowy rekord"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Powrót do tej strony"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Edytuj następny rekord"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Klawisz TAB przemieszcza pomiędzy wartościami, CTRL+strzałka przenosi w "
"dowolne miejsce"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9957,7 +10034,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Dodaj %s kolumn do indeksu "
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Liczba kolumn musi być większa niż zero."
@@ -9983,102 +10060,102 @@ msgstr "Tabela %s została przekopiowana do %s."
msgid "The table name is empty!"
msgstr "Brak nazwy tabeli!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Sortowanie tabeli wg"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(pojedynczo)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Przenieś tabelę do (bazadanych.tabela):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcje tabeli"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Zmień nazwę tabeli na"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopiuj tabelę do (bazadanych.tabela):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Przełącz na przekopiowaną tabelę"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Zarządzanie tabelą"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentuj tabelę"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabela %s została przeładowana"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Przeładuj tabelę (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Zrzut danych tabeli"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Brak baz danych"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Zarządzanie partycjami"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partycja %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analizuj"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Sprawdź"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optymalizuj"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Przebuduj"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Napraw"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Usuń partycjonowanie"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Sprawdź spójność powiązań:"
@@ -10086,39 +10163,39 @@ msgstr "Sprawdź spójność powiązań:"
msgid "Show tables"
msgstr "Pokaż tabele"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Wykorzystanie przestrzeni"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Wykorzystanie"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektywne"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statystyka rekordów"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Cecha"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statycznie"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "zmienny"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Długość rekordu"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Rozmiar rekordu "
@@ -10207,57 +10284,57 @@ msgstr "Brak"
msgid "Column %s has been dropped"
msgstr "Tabela %s została usunięta"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Do %s dodany został klucz podstawowy"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Do %s dodany został indeks"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Pokaż wersje"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Widok relacyjny"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Analiza zawartości"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Dodaj %s pól"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Na końcu tabeli"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Na początku tabeli"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Po %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Utwórz indeks dla %s kolumn"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partycjonowanie"
@@ -10285,7 +10362,7 @@ msgstr "Monitorowanie %s.%s , wersja %s jest aktywna."
msgid "SQL statements executed."
msgstr "Instrukcje SQL zostały wykonane."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -10293,102 +10370,132 @@ msgstr ""
"Możesz wykonać zrzut poprzez utworzenie i użycie tymczasowej bazy danych. "
"Upwenij się, że posiadasz do tego odpowiednie uprawnienia."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Ujmij w komentarz te dwa wiersze jeśli ich nie potrzebujesz."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
"Instrukcje SQL zostały wyeksportowane. Proszę skopiować zrzut lub go wykonać."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Wersja %s migawki (kod SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Monitoruj następujące instrukcje definiujące dane:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Ignore errors"
+msgid "Query error"
+msgstr "Ignoruj błędy"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Monitoruj następujące instrukcje przetwarzania danych:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Monitorowanie instrukcji"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Pokaż %s w okresie od %s do %s użytkownika %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Usuń dane monitorujące tę tabelę"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Brak baz danych"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Instrukcja definiowania danych"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Instrukcja przetwarzania danych"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Zrzut SQL (plik do pobrania)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Zrzut SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Ta opcja zamienia twoją tabelę i zawarte w niej dane."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Wykonanie SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Eksportuj jako %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Pokaż wersje"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Wersja"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Dezaktywuj monitorowanie %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Dezaktywuj teraz"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Aktywuj monitorowanie %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Aktywuj teraz"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Utwórz wersję %s dla %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Monitoruj następujące instrukcje definiujące dane:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Monitoruj następujące instrukcje przetwarzania danych:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Utwórz wersję"
diff --git a/po/pt.po b/po/pt.po
index 781c8c340d..ae2c1e8c76 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: \n"
"Language-Team: portuguese \n"
-"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Mostrar tudo"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Pesquisar"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Pesquisar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executa"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nome do Índice"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "A base de dados %s foi criada."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentário da Base de Dados: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Comentários da tabela"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "Comentários da tabela"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Coluna"
@@ -148,11 +148,11 @@ msgstr "Coluna"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -162,8 +162,8 @@ msgstr "Tipo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulo"
@@ -173,7 +173,7 @@ msgstr "Nulo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Omissão"
@@ -196,39 +196,40 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Não"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Sim"
@@ -240,8 +241,8 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver o esquema da base de dados"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada na base de dados"
@@ -267,78 +268,78 @@ msgstr "O nome da base de dados %s foi alterado para %s"
msgid "Database %s has been copied to %s"
msgstr "A base de dados %s foi copiada para %s."
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Alterar o nome da base de dados para"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Comando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Remover a Base de Dados"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "A base de dados %s foi eliminada."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Apagar a Base de Dados (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar a Base de Dados para"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Somente a estrutura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estrutura e dados"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Apenas dados"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Criar a Base de Dados antes de copiar (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Adicionar %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Adicionar valor AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Adicionar restrições (constraints)"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Mudar para a Base de Dados copiada"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Agrupamento (Collation)"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -347,7 +348,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:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editar ou exporta o esquema relacional (schema)"
@@ -355,17 +356,17 @@ msgstr "Editar ou exporta o esquema relacional (schema)"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabela"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Registos"
@@ -381,21 +382,21 @@ msgstr "em uso"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Criação"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Última actualização"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Última Verificação"
@@ -406,97 +407,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabela"
msgstr[1] "%s tabelas"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "O seu comando SQL foi executado com sucesso"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Tem que escolher pelo menos uma coluna para mostrar"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Trocar para"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "Construtor Gráfico"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Ordenação"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascendente"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Critérios"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins."
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "E"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Elim."
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ou"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modificar"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Adicionar/Remover Linhas de Critérios"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Adicionar/Remover Colunas"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Actualiza Comando SQL"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Usar Tabelas"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Comando SQL na base de dados %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Executar Comando SQL"
@@ -537,7 +531,7 @@ msgstr[1] "%s resultados na tabela %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visualizar"
@@ -546,14 +540,15 @@ msgstr "Visualizar"
msgid "Delete the matches for the %s table?"
msgstr "Apagar os semelhantes para a %s tabela?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Apagar"
@@ -592,17 +587,17 @@ msgstr "Dentro da coluna:"
msgid "No tables found in database"
msgstr "Não foram encontradas tabelas na base de dados"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "A tabela %s foi limpa"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "A Vista %s foi eliminada"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "A tabela %s foi eliminada"
@@ -615,14 +610,14 @@ msgstr "Detecção de Alterações está activa."
msgid "Tracking is not active."
msgstr "Detecção de Alterações está desactivada."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta vista tem número de linhas aproximado. Por favor, consulte a "
-"%sdocumentação%s."
+"Esta vista tem número de linhas aproximado. Por favor, consulte a %"
+"sdocumentação%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -646,22 +641,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o storage engine por defeito neste MySQL server."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Com os seleccionados:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Nenhum"
@@ -670,16 +665,16 @@ msgid "Check tables having overhead"
msgstr "Verificar tabelas com overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Vista de impressão"
@@ -691,28 +686,45 @@ msgstr "Limpa"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Verificar tabela"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizar tabela"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparar tabela"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizar tabela"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Sem bases de dados"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Substituir os dados da tabela pelos do arquivo"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Substituir os dados da tabela pelos do arquivo"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicionario de dados"
@@ -726,10 +738,10 @@ msgstr "Tabelas em tracking"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Base de Dados"
@@ -737,36 +749,36 @@ msgstr "Base de Dados"
msgid "Last version"
msgstr "Última versão"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Criado"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Actualizado"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Estado"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Acções"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Apagar dados de tracking para esta tabela"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "activo"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "inactivo"
@@ -774,11 +786,11 @@ msgstr "inactivo"
msgid "Versions"
msgstr "Versões"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Relatório de tracking"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Snapshot da estrutura"
@@ -786,8 +798,8 @@ msgstr "Snapshot da estrutura"
msgid "Untracked tables"
msgstr "Tabelas sem tracking"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Tracking à tabela"
@@ -846,8 +858,8 @@ msgstr "O Dump foi gravado para o ficheiro %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por "
"favor reveja a %sdocumentação%s para encontrar formas de contornar este "
@@ -922,6 +934,13 @@ msgstr ""
"significa que o phpMyAdmin não conseguirá terminar este import, sem que se "
"incremente os tempos de limite de php."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "O seu comando SQL foi executado com sucesso"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -948,239 +967,257 @@ msgstr "Clique para deseleccionar"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Confirma : "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Evento de Drop"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Procedimento de Drop"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Apagando dados de tracking"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Apagando Chave Primária/Indice"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Esta operação poderá demorar. Deseja prosseguir?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Está prestes a DESACTIVAR um Repositório BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Tem a certeza que pretender desactivar todas as referencias a BLOB para a "
"Base de Dados %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Nº de dados insuficiente!\\nPreencha todas as opções!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Isto não é um número!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "O nome da máquina está vazio!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "O nome do utilizador está vazio!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Indique a palavras-passe!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr ""
"As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Adicionar um novo utilizador"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Criar Utilizador"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "A recarregar privilégios"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Removendo os utilizadores seleccionados"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Carregando"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Processando Pedido"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Erro a Processar Pedido"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Apagando Coluna"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Adicionando Chave Primária"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Renomeando Bases de Dados"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Recarregar Base de Dados"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Copiando Bases de Dados"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Mudando Mapa de Caracteres"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "A tabela terá que ter pelo menos uma coluna"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Criar uma Tabela"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Pesquisando"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Esconder Caixa do query"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Mostrar Caixa do query"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Editar em linha"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Guarda"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "Comando SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "Comando SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Seleccione chave de referencia"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Seleccione Foreign Key"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Escolha campo para mostrar"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Alterar a palavra-passe"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Gerado por"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Alterar a palavra-passe"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Seg"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1188,123 +1225,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Versão do servidor"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Sem bases de dados"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "Dados"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binário "
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1312,176 +1354,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dom"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Seg"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ter"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Sex"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "em uso"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1532,34 +1574,34 @@ msgid "No index defined!"
msgstr "Nenhum indíce definido!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Índices"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Único"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Quantidade"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Comentários"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
@@ -1581,32 +1623,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Base de Dados"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Erro"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1698,11 +1740,11 @@ msgstr "Bemvindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script"
-"%2$s pode ser utilizado para criar um."
+"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%"
+"2$s pode ser utilizado para criar um."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1847,19 +1889,19 @@ msgstr "Tabelas"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dados"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Suspenso"
@@ -1953,16 +1995,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Servidor"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "deve actualizar para %s %s ou mais recente."
@@ -1997,7 +2039,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentação"
@@ -2145,7 +2187,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Estrutura"
@@ -2180,7 +2222,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Directoria no servidor web para fazer upload"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Não é possivel alcançar a directoria que configurou para fazer upload"
@@ -2350,7 +2392,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Limpa"
@@ -2467,7 +2509,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2595,7 +2637,7 @@ msgid "Character set of the file"
msgstr "Configurar o Mapa de Caracteres do ficheiro:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formato"
@@ -2925,7 +2967,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Servidor"
@@ -3672,7 +3714,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4140,9 +4182,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Palavra-passe"
@@ -4162,8 +4204,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Utilizador :"
@@ -4279,7 +4321,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4427,7 +4469,7 @@ msgstr "Enviado"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nome"
@@ -4450,8 +4492,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilégios"
@@ -4463,7 +4505,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4482,23 +4524,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Alterar a palavra-passe"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Sem palavra-passe"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Confirma"
@@ -4520,7 +4562,7 @@ msgid "Create"
msgstr "Criar"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Sem Privilégios"
@@ -4646,8 +4688,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4667,7 +4709,7 @@ msgstr "Compressão"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Nenhum"
@@ -4848,7 +4890,7 @@ msgstr "Ordenar por chave"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Operações"
@@ -4889,65 +4931,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Transformação do navegador"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Registo eliminado"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Termina"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "na pesquisa"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Mostrando registos "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "O Query demorou %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Muda"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Vista de impressão (com texto inteiro)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Mostrar o esquema de PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Versão do servidor"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link não encontrado"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Informação de Login "
@@ -5334,8 +5376,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5453,9 +5495,9 @@ msgstr "MIME-types disponíveis"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Máquina"
@@ -5466,7 +5508,7 @@ msgid "Generation Time"
msgstr "Data de Criação"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versão do servidor"
@@ -5806,7 +5848,30 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Sex"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Submete"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Sem alterações"
@@ -6115,8 +6180,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nome do Utilizador"
@@ -6137,7 +6202,7 @@ msgstr "Variável"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valor"
@@ -6156,34 +6221,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Qualquer utilizador"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Usar campo de texto"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Qualquer máquina"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Este Anfitrião"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Usar a tabela do anfitrião"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6247,7 +6312,7 @@ msgstr "Atributos"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6348,12 +6413,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6433,7 +6498,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Executa comando(s) SQL na base de dados %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6467,10 +6532,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Mostrar de novo aqui este comando "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Submete"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Ver apenas"
@@ -6479,7 +6540,7 @@ msgstr "Ver apenas"
msgid "Location of the text file"
msgstr "Localização do arquivo de texto"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Directoria no servidor web para fazer upload"
@@ -6531,19 +6592,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Aspa não fechada"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identificador inválido"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Pontuação desconhecida"
@@ -6593,7 +6654,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Índice"
@@ -6642,12 +6703,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primária"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Texto Completo"
@@ -6661,7 +6722,7 @@ msgstr ""
"o que %s faz."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6669,12 +6730,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Adiciona novo campo"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6824,82 +6885,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Características gerais de Relação"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Características gerais de Relação"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Utilizador"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Mapa de Caracteres do mySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "versão do PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Mostra informação do PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Página Oficial do phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributos"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Sem alterações"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6911,21 +6972,21 @@ msgstr ""
"está a correr com este valor por defeito, assim aberto a intrusões, deveria "
"corrigir este buraco de segurança."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6933,26 +6994,26 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"O ficheiro de configuração precisa agora de uma frase-passe secreta "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6964,21 +7025,21 @@ msgstr ""
"As Características adicionais para trabalhar com ligações entre Tabelas "
"foram desactivadas. Para saber porquê carregue %saqui%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7000,13 +7061,13 @@ msgstr "Qtd Campos"
msgid "filter tables by name"
msgstr "Alterar a ordem da tabela por"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Criar uma Página nova"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Por favor seleccione uma base de dados"
@@ -7401,79 +7462,79 @@ msgid "Includes all privileges except GRANT."
msgstr "inclui todos os privilégios excepto Conceção - GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permite alterar a estrutura de tabelas existentes."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "Permite criar e apagar indexes."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permite criar novas Bases de Dados e tabelas."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "Permite criar novas tabelas."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permite criar novas tabelas."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permite criar tabelas temporárias."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "Permite criar novas tabelas."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permite apagar dados."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permite apagar Bases de Dados e tabelas."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permite apagar Bases de Dados."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
#, fuzzy
msgid "Allows executing stored routines."
msgstr "Permite criar novas tabelas."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Permite importar dados de... e exportar dados para ficheiros."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7481,32 +7542,32 @@ msgstr ""
"privilégios."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permite criar e apagar indexes."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permite inserir e substituir dados."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7514,59 +7575,59 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Não tem efeito nesta versão do MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permite ler dados."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Dá acesso à lista de bases de dados completa."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permite desligar o servidor."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7574,13 +7635,13 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Permite criar e apagar indexes."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permite alterar dados."
@@ -7595,192 +7656,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilégios específicos da tabela"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
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:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Privilégios Globais"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilégios específicos da Base de Dados"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administração"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Privilégios Globais"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilégios específicos da Base de Dados"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limites do recurso"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Informação de Login "
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Mantendo a palavra-passe "
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nenhum utilizador encontrado."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "O utilizador %s já existe!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Acrescentou um novo utilizador."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Actualizou os privilégios de %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Anulou os privilégios para %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "A palavra-passe para %s foi alterada com sucesso."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "A apagar %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "A recarregar privilégios"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Os utilizadores selecionado foram apagados com sucesso."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "O privilégios foram recarregados com sucesso."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Alterar Privilegios"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Anula"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Todos"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Conceder/Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Acrescenta um utilizador"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Remover utilizadores seleccionados"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilégios específicos da Coluna"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Adicionar privilégios na base de dados seguinte"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Todos privilégios na tabela seguinte"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Mudar a informação de login / Copiar Utilizador"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Criar um novo utilizador com os mesmo privilégios e ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... manter o antigo."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... apagar o antigo das tabelas do utilizador."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7788,44 +7849,44 @@ msgstr ""
" ... apagar o antigo das tabelas do utilizador e depois recarregue os "
"privilégios."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Verificar Privilégios para a Base de Dados "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Utilizadores que tem acesso a "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Especifico da Base de Dados"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8849,7 +8910,7 @@ msgstr "Valor de sessão"
msgid "Global value"
msgstr "Valor Global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8881,57 +8942,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Modificações foram guardadas"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Documentação do phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Dados"
@@ -9160,63 +9233,63 @@ msgstr "Os utilizadores selecionado foram apagados com sucesso."
msgid "Function"
msgstr "Funções"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Devido ao seu tamanho,
este campo pode não ser editável "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Binário - não editar "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Insere como novo registo"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Voltar atrás"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Inserir novo registo"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
#, fuzzy
msgid "Go back to this page"
msgstr "Voltar atrás"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Editar próxima coluna"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9374,7 +9447,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Adicionar ao índice %s coluna(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9400,105 +9473,105 @@ msgstr "Tabela %s copiada para %s."
msgid "The table name is empty!"
msgstr "O nome da tabela está vazio!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Alterar a ordem da tabela por"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(A refazer após inserir/eliminar)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Move tabela para (base de dados.tabela):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opções da tabela"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Renomeia a tabela para "
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copia tabela para (base-de-dados.tabela):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Mudar para a tabela copiada"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Manutenção da tabela"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "A tabela %s foi fechada"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Fecha a tabela (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Extraindo dados da tabela"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Sem bases de dados"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Manutenção da tabela"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Checo"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Reparar tabela"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Verificar Integridade referencial:"
@@ -9506,39 +9579,39 @@ msgstr "Verificar Integridade referencial:"
msgid "Show tables"
msgstr "Mostra tabelas"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Espaço ocupado"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Utilização"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Em uso"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Estatísticas dos registos"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Itens"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinâmico"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Comprim. dos reg."
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Tamanho dos reg."
@@ -9622,56 +9695,56 @@ msgstr "Nenhum"
msgid "Column %s has been dropped"
msgstr "A tabela %s foi eliminada"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Uma chave primária foi adicionada a %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Um índice foi adicionado a %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Mostra informação do PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Vista de Relação"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Propor uma estrutura de tabela"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "Adiciona novo campo"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "No Fim da Tabela"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "No Início da Tabela"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Depois %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Criar um índice com %s coluna(s)"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9699,109 +9772,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Tipo de Query"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Apagar dados de tracking para esta tabela"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Sem bases de dados"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Dados"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Tipo de Exportação"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "versão do PHP"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Criar versão"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 946d52be44..b00fa18d44 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-14 17:44+0200\n"
"Last-Translator: \n"
"Language-Team: brazilian_portuguese \n"
-"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Mostrar todos"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Procurar"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Procurar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executar"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nome chave"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Banco de dados %1$s foi criado."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentário do Banco de Dados: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Comentários da tabela"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Comentários da tabela"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Coluna"
@@ -149,11 +149,11 @@ msgstr "Coluna"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tipo"
@@ -163,8 +163,8 @@ msgstr "Tipo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulo"
@@ -174,7 +174,7 @@ msgstr "Nulo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Padrão"
@@ -197,39 +197,40 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Não"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Sim"
@@ -241,8 +242,8 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver o esquema do Banco de Dados"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada no Banco de Dados"
@@ -268,78 +269,78 @@ msgstr "O Banco de Dados %s foi renomeado para %s"
msgid "Database %s has been copied to %s"
msgstr "Banco de Dados %s copiado para %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Renomear Banco de Dados para"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Comando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Remover Banco de Dados"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Banco de Dados %s foi eliminado."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Apagar o Banco de Dados (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar Banco de Dados para"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Somente estrutura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estrutura e dados"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Dados apenas"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE antes de copiar"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Adicionar %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Adicionar valor AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Adicionar restrições"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Mudar para o Banco de Dados copiado"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"Os recursos adicionais para trabalhar com tabelas linkadas foram "
"desativadas. Para descobrir o motivo clique %saqui%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editar ou exportar esquema relacional"
@@ -356,17 +357,17 @@ msgstr "Editar ou exportar esquema relacional"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabela"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Registros"
@@ -382,21 +383,21 @@ msgstr "em uso"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Criação"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Última atualização"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Última verificação"
@@ -407,99 +408,92 @@ msgid_plural "%s tables"
msgstr[0] "%s tabela"
msgstr[1] "%s tabelas"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Seu comando SQL foi executado com sucesso"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Deve escolher pelo menos uma coluna para exibir"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Mudar para"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "construtor visual"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Ordenar"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascendente"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Mostrar"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Critério"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "E"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ou"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modificar"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Adicionar/Remover critérios de linha"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Adicionar/Remover colunas"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Atualizar a consulta SQL"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Usar tabelas"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Consulta no Banco de Dados %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Enviar consulta SQL"
@@ -540,7 +534,7 @@ msgstr[1] "%s resultados dentro da tabela %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visualizar"
@@ -549,14 +543,15 @@ msgstr "Visualizar"
msgid "Delete the matches for the %s table?"
msgstr "Excluir correspondentes para a tabela %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Remover"
@@ -595,17 +590,17 @@ msgstr "Dentro do campo:"
msgid "No tables found in database"
msgstr "Nenhuma tabela encontrada no banco de dados"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s foi esvaziada"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Visão %s foi apagada"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s foi eliminada"
@@ -618,14 +613,14 @@ msgstr "Rastreamento está ativo."
msgid "Tracking is not active."
msgstr "Rastreamento não está ativo."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a "
-"%sdocumentação%s."
+"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %"
+"sdocumentação%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -648,22 +643,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o stored engine padrão neste servidor MySQL."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Com marcados:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Marcar todos"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desmarcar todos"
@@ -672,16 +667,16 @@ msgid "Check tables having overhead"
msgstr "Verificar sobre-carga"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportar"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Visualização para impressão"
@@ -693,28 +688,45 @@ msgstr "Limpar"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Eliminar"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Verificar tabela"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Otimizar tabela"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparar tabela"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizar tabela"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Sem bases"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Substituir os dados da tabela pelos do arquivo"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Substituir os dados da tabela pelos do arquivo"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicionário de dados"
@@ -728,10 +740,10 @@ msgstr "Tabelas rastreadas"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Banco de Dados"
@@ -739,36 +751,36 @@ msgstr "Banco de Dados"
msgid "Last version"
msgstr "Última versão"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Criado"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Atualizado"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Ação"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Excluir dados de monitoramento desta tabela"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "ativo"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "inativo"
@@ -776,11 +788,11 @@ msgstr "inativo"
msgid "Versions"
msgstr "Versões"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Relatório de rastreamento"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Preview da estrutura"
@@ -788,8 +800,8 @@ msgstr "Preview da estrutura"
msgid "Untracked tables"
msgstr "Tabelas não monitoradas"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Rastrear tabela"
@@ -848,8 +860,8 @@ msgstr "Dump foi salvo no arquivo %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites."
@@ -921,6 +933,13 @@ msgstr ""
"que o phpMyAdmin não é capaz de finalizar essa importação à menos que você "
"aumente o tempo limite do PHP."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Seu comando SQL foi executado com sucesso"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -946,239 +965,257 @@ msgstr "Clique para desmarcar"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "O comando \"DROP DATABASE\" está desabilitado."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Você realmente deseja"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Remoção de eventos"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Remoção de Procedures"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Excluindo os dados de monitoramento"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Remoção de chave/índice primário"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Esta operação pode ser demorada. Deseja prosseguir?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Você está prestes a desativar um repositório BLOB."
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Tem certeza que quer desabilitar todas as referências BLOB para o banco de "
"dados %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Faltando valores no formulário!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Isto não é um número!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "O nome do servidor está vazio!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "O nome do usuário está em branco!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "A senha está em branco!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "As senhas não são iguais!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Adicionar usuário"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Criar usuário"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Recarregando privilégios"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Remover os usuários selecionados"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Cancelar"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Carregando"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Processando a requisição"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Erro no processamento da requisição"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Excluindo coluna"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Adicionar chave primária"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Renomeando o Banco de Dados"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Recarregar o Banco de Dados"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Copiar Banco de Dados"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Modificando charset"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabela deve ter pelo menos um campo."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Criar tabela"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Procurar"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Ocultar caixa de consulta"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Mostrar caixa de consulta"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Engines"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Salvar"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ocultar"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Ocultar critério de pesquisa"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Exibir critério de pesquisa"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Seleciona chave referenciada"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Selecionar Chave Estrangeira"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Por favor, selecione uma chave primária ou uma chave única"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Escolha o campo para exibir"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Gerar Senha"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Gerar"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Alterar a senha"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Mais"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1186,105 +1223,110 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ". última versão estável:"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Sem bases"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Concluído"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Hoje"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Janeiro"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Fevereiro"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Março"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Abril"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Maio"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Junho"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Julho"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Agosto"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Setembro"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Outubro"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Novembro"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Dezembro"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1292,166 +1334,166 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Segunda"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Terça"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Quarta"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Quinta"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Sexta"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Segundo"
@@ -1504,33 +1546,33 @@ msgid "No index defined!"
msgstr "Nenhum índice definido!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Índices"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Único"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Pacote"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinalidade"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Cometário"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
@@ -1554,18 +1596,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Banco de Dados"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Erro"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1573,7 +1615,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d linha(s) afetadas."
msgstr[1] "%1$d linha(s) afetadas."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1581,7 +1623,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d linhas(s) excluídas."
msgstr[1] "%1$d linhas(s) excluídas."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1676,8 +1718,8 @@ msgstr "Bem vindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"A provável razão para isso é que você não criou o arquivo de configuração. "
"Você deve usar o %1$ssetup script%2$s para criar um."
@@ -1829,19 +1871,19 @@ msgstr "Tabelas"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dados"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Sobrecarga"
@@ -1937,16 +1979,16 @@ msgstr ""
"Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Servidor"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticação inválido informado nas configurações:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Você deveria atualizar para %s %s ou posterior."
@@ -1981,7 +2023,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentação"
@@ -2131,7 +2173,7 @@ msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Estrutura"
@@ -2165,7 +2207,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Selecionar a partir do diretório de upload do servidor %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
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."
@@ -2332,7 +2374,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Restaurar"
@@ -2447,7 +2489,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Arquivo de configuração"
@@ -2575,7 +2617,7 @@ msgid "Character set of the file"
msgstr "Conjunto de caracteres do arquivo"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formato"
@@ -2901,7 +2943,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servidores"
@@ -3647,7 +3689,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr "Autenticando..."
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Tipo de autenticação"
@@ -4109,9 +4151,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Senha"
@@ -4131,8 +4173,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Usuário"
@@ -4246,7 +4288,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4397,7 +4439,7 @@ msgstr "Eventos"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nome"
@@ -4420,8 +4462,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilégios"
@@ -4433,7 +4475,7 @@ msgstr "Rotinas"
msgid "Return type"
msgstr "Tipo de returno"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4454,23 +4496,23 @@ msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
"(ou o soquete do servidor MySQL local não está configurado corretamente)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detalhes..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Alterar a senha"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Sem senha"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Re-digite"
@@ -4494,7 +4536,7 @@ msgid "Create"
msgstr "Criar"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Sem privilégios"
@@ -4618,8 +4660,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
@@ -4642,7 +4684,7 @@ msgstr "Compressão"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Nenhum"
@@ -4838,7 +4880,7 @@ msgstr "Ordenar pela chave"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opções"
@@ -4878,64 +4920,64 @@ msgstr "Exibir conteúdo BLOB"
msgid "Browser transformation"
msgstr "Transformações do navegador"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Copiar"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Registro eliminado"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Matar"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "na consulta"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Mostrando registros "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Consulta levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Alterar"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operações resultantes das consultas"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Ver impressão (com textos completos)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Exibir gráfico"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Criar usuário"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link não encontrado"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informações da versão"
@@ -5341,8 +5383,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5466,9 +5508,9 @@ msgstr "MIME-type disponíveis"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Servidor"
@@ -5479,7 +5521,7 @@ msgid "Generation Time"
msgstr "Tempo de Geração"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versão do Servidor"
@@ -5824,7 +5866,32 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Sex"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Submeter"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Adicionar índice"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Sem Mudança"
@@ -6129,8 +6196,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nome do usuário"
@@ -6153,7 +6220,7 @@ msgstr "Variáveis"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valor"
@@ -6171,34 +6238,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Qualquer usuário"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Usar campo texto"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Qualquer servidor"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Esse Servidor"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Usar Tabela do Servidor"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6262,7 +6329,7 @@ msgstr "Atributos"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6365,12 +6432,12 @@ msgid "Toggle scratchboard"
msgstr "mudar o estado do Scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguagem desconhecida: %1$s."
@@ -6449,7 +6516,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Fazer consulta SQL no Banco de Dados %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Limpar"
@@ -6483,10 +6550,6 @@ msgstr "Delimitadores"
msgid " Show this query here again "
msgstr " Mostrar esta consulta SQL novamente "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Submeter"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Apenas visualizar"
@@ -6495,7 +6558,7 @@ msgstr "Apenas visualizar"
msgid "Location of the text file"
msgstr "Localização do arquivo texto"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Servidor web subiu o diretório"
@@ -6546,19 +6609,19 @@ msgstr "INICIO CRU"
msgid "END RAW"
msgstr "FIM CRU"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Aspas não fechada"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identificador inválido"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "String de pontuação desconhecida"
@@ -6612,7 +6675,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Índice"
@@ -6661,12 +6724,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primária"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Texto completo"
@@ -6680,7 +6743,7 @@ msgstr ""
"que %s faz."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Storage Engine"
@@ -6688,13 +6751,13 @@ msgstr "Storage Engine"
msgid "PARTITION definition"
msgstr "Definição da PARTIÇÃO"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Adicionar %s campo(s)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6918,82 +6981,82 @@ msgstr "Nenhum arquivo encontrado dentro do arquivo ZIP!"
msgid "Error in ZIP archive:"
msgstr "Erro no arquivo ZIP:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Recursos de relações gerais"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Collation de conexão do MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Recursos de relações gerais"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Versão do Protocolo"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Usuário"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Conjunto de caracteres MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Versão do cliente MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Extensão do PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Mostrar informações do PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Página Oficial do phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributos"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Exportar"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Sem Mudança"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7005,7 +7068,7 @@ msgstr ""
"com esse padrão estará aberto a invasões, você realmente deveria corrigir "
"este furo de segurança."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7014,7 +7077,7 @@ msgstr ""
"Você habilitou mbstring.func_overload nas configurações do PHP. Essa opção é "
"incompatível com o phpMyAdmin e certamente causará a perda de algum dado!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7025,7 +7088,7 @@ msgstr ""
"será capaz de dividir as strings corretamente isso pode causar resultados "
"inesperados."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7033,26 +7096,26 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"O arquivo de configuração agora precisa de uma frase secreta com senha "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
@@ -7064,14 +7127,14 @@ msgstr ""
"Os recursos adicionais para trabalhar com tabelas linkadas foram "
"desativadas. Para descobrir o motivo clique %saqui%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7080,7 +7143,7 @@ msgstr ""
"Sua versão %s da biblioteca MySQL do PHP difere da versão %s do seu servidor "
"MySQL. Isso pode causar um comportamento estranho."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7103,14 +7166,14 @@ msgstr "Filtro"
msgid "filter tables by name"
msgstr "Alterar tabela ordenada por"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Criar tabela"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Selecionar um Banco de Dados"
@@ -7509,75 +7572,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Incluir todos os privilégios, exceto GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permitir alterar a estrutura das tabelas existentes."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Permitir alterar e apagar stored routines."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permitir criar novas tabelas e Banco de Dados."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Permitir criar stored routines."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permitir criar novas tabelas."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permitir criar tabelas temporárias."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Permitir criar, apagar e renomear contas dos usuários."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Permitir criar novas visões."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permitir apagar dados."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permitir eliminar Banco de Dados e tabelas."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permitir eliminar tabelas."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Permitir iniciar eventos no cronograma de eventos"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Permitir executar stored routines."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Permitir importar dados e exportar dados em arquivos."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7585,33 +7648,33 @@ msgstr ""
"privilégios."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permitir criar e eliminar índices."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permitir inserir e substituir dados."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Permitir bloquear tabelas para a processo atual."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7619,60 +7682,60 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Permitir visualizar processos de todos os usuários"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Sem efeitos nesta versão do MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Precisar dos escravos de replicação."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permitir leitura dos dados."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Permitir acesso completo à lista de Bancos de Dados."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Permitir executar consultas SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permitir desligar o servidor."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7683,12 +7746,12 @@ msgstr ""
"processos de outros usuários."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Permitir criar e e largar em cadeia"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permitir modificar dados."
@@ -7703,192 +7766,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilégios específicos da tabela"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
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:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Privilégios globais"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilégios específicos do Banco de Dados"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administração"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Privilégios globais"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilégios específicos do Banco de Dados"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limite dos recursos"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Informação de login"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Não mudar a senha"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nenhum usuário(s) encontrado."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "O usuário %s já existe!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Adicionado usuário"
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Você mudou os priviléios para %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Você revogou os privilégios para %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "A senha para %s foi modificada com sucesso."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Eliminando %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Nenhum usuário selecionado para exclusão!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Recarregando os privilégios"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Os usuários selecionados foram apagados com sucesso."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Os privilégios foram recarregados com sucesso."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Editar Privilégios"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revogar"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Qualquer"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Avaliação dos usuários"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Conceder/Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Adicionar novo usuário"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Remover os usuários selecionados"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilégios específicos da coluna"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Adicionar privilégios nas seguintes Banco de Dados"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Adicionar privilégios nas seguintes tabelas"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Mudar informações de login / Copiar usuário"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
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:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... manter o antigo."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... apagar o antigo da tabela de usuários."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7896,44 +7959,44 @@ msgstr ""
" ... apagar o antigo da tabela de usuários e depois recarregar os "
"privilégios."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Banco de Dados para usuário"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nenhum"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Conceder todos os privilégios no banco de dados "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Usuários que têm acesso à "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Específico do Banco de Dados"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "coringa"
@@ -9078,7 +9141,7 @@ msgstr "Valor da sessão"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9111,56 +9174,68 @@ msgstr ""
msgid "Insecure connection"
msgstr "Conexão insegura"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration"
+msgid "Configuration saved."
+msgstr "Configuração"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Visão geral"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Exibir mensagens escondidas (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Não existem servidores configurados"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Novo servidor"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Idioma padrão"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "deixar o usuário escolher"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- nenhum -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Servidor padrão"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Fim de linha"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Exibir"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Carregar"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Documentação do phpMyAdmin "
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Doar"
@@ -9387,63 +9462,63 @@ msgstr "A tabela %1$s foi alterada com sucesso"
msgid "Function"
msgstr "Função"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr "Por causa da sua largura,
esse campo pode não ser editável"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binário - não edite"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Inserir como um novo registro"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Inserir como uma linha nova e ignorar erros"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Exibindo consulta SQL"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "e então"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Retornar"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Inserir novo registro"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Voltar para esta página"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Editar próximo registro"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover "
"em qualquer direção"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9610,7 +9685,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Adicionar ao índice %s coluna(s)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Contador da coluna deve ser maior que zero."
@@ -9636,99 +9711,99 @@ msgstr "Tabela %s copiada para %s."
msgid "The table name is empty!"
msgstr "O Nome da Tabela está vazio!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Alterar tabela ordenada por"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singularmente)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Mover tabela para (Banco de Dados.tabela):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opções da tabela"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Renomear a tabela para"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copiar tabela para (Banco de Dados.tabela):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Mudar para a tabela copiada"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabela de Manutenção"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Desfragmentar tabela"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabela %s foi limpa"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Limpar a tabela (\"LIMPAR\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Remover dados ou tabela"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Esvaziar a tabela (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Remover a tabela (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Manutenção da partição"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partição %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analizar"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Checar"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Otimizar"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Reconstruir"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Reparar"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Remover partição"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Verificar integridade referencial:"
@@ -9736,39 +9811,39 @@ msgstr "Verificar integridade referencial:"
msgid "Show tables"
msgstr "Mostrar tabelas"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Uso do espaço"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Uso"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efetivo"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Estatísticas do registros"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Comandos"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "estático"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinâmico"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Tamanho do registro"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Tamanho do registro "
@@ -9853,57 +9928,57 @@ msgstr "Nenhum"
msgid "Column %s has been dropped"
msgstr "Tabela %s foi eliminada"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Uma chave primária foi adicionada a %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Um índice foi adicionado a %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Exibir versões"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Ver relações"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Propor estrutura da tabela"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Adicionar %s campo(s)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "No final da tabela"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "No início da tabela"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Depois %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Criar um índice em %s colunas"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "particionado"
@@ -9931,109 +10006,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr "Instruções SQL executadas."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Comente estas duas linhas se você não precisa delas."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
#, fuzzy
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "Instruções SQL exportadas. Por favor copie a saída ou execute."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Reunir erros"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Rastreando instruções"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Excluir dados de monitoramento desta tabela"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Sem bases"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Data"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Instrução de definição de dados"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Despejar SQL (download de arquivo)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Despejar SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Esta opção irá substituir sua tabela e os dados nela contidos."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
#, fuzzy
msgid "SQL execution"
msgstr "Execução SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exportar como %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Exibir versões"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Versão"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, fuzzy, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Desativar rastreamento para %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Desativar agora"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Ativar rastreamento para %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Ativar agora"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Criar versão %s de %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Criar versão"
diff --git a/po/ro.po b/po/ro.po
index 71fe83906f..0a94b7436b 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,22 +1,22 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: romanian \n"
-"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Arată toate"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Caută"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Caută"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Execută"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nume cheie"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza de date %1$s a fost creată."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentarii referitoare la baza de date: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Comentarii tabel"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Comentarii tabel"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -152,11 +152,11 @@ msgstr "Denumirile coloanelor"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -166,8 +166,8 @@ msgstr "Tip"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nul"
@@ -177,7 +177,7 @@ msgstr "Nul"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Setare de bază"
@@ -200,39 +200,40 @@ msgstr "Trimitere la"
msgid "Comments"
msgstr "Comentarii"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nu"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Da"
@@ -244,8 +245,8 @@ msgstr "Listare"
msgid "View dump (schema) of database"
msgstr "Vizualizarea schemei bazei de date"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Nu s-a găsit nici un tabel în baza de date."
@@ -271,81 +272,81 @@ msgstr "Baza de date %s a fost redenumită în %s"
msgid "Database %s has been copied to %s"
msgstr "Baza de date %s a fost copiata la %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Redenumire bază de date în"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Comanda"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Redenumire bază de date în"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza de date %s a fost aruncată."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Nu sînt baze de date"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiază baza de date"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Numai structura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structura și date"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Numai date"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREEAZĂ BAZA DE DATE înainte de copiere"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Adăugare %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Adaugă valoare pentru AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Adaugă constrângeri"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Schimbă la tabela copiată"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Interclasare"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -357,7 +358,7 @@ msgstr ""
"Opțiunile adiționale pentru folosirea tabelelor intercalate au fost "
"dezactivate. Pentru a afla de ce ... %shere%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -367,17 +368,17 @@ msgstr "Schema relațională"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabel"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Linie"
@@ -393,21 +394,21 @@ msgstr "în folosință"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Creare"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Ultima actualizare"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Ultima verficare"
@@ -420,101 +421,94 @@ msgstr[0] "%s tabele"
msgstr[1] "%s tabele"
msgstr[2] "%s tabele"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Comanda dumneavoastră SQL a fost executată cu succes"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sortare"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Crescătoare"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Descrescător"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Afișează"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Criteriu"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Și"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Sau"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Modificare"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Adaugă/șterge criteriu"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Adaugă/șterge coloane"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Reînnoire comandă"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Utilizare tabele"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Comandă SQL pe baza de date %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Trimite comanda"
@@ -557,7 +551,7 @@ msgstr[2] "%s rezultat(e) în interiorul tabelului %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Navigare"
@@ -566,14 +560,15 @@ msgstr "Navigare"
msgid "Delete the matches for the %s table?"
msgstr "Șterge datele urmărite din acest tabel"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Șterge"
@@ -616,17 +611,17 @@ msgstr "In interiorul coloanei::"
msgid "No tables found in database"
msgstr "Nu s-a găsit nici un tabel în baza de date."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabelul %s a fost golit"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Vizualizarea %s a fost eliminată"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabelul %s a fost aruncat"
@@ -639,11 +634,11 @@ msgstr "Monitorizarea este activată"
msgid "Tracking is not active."
msgstr "Monitorizarea nu este activată"
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
@@ -668,22 +663,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Cele bifate:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Marchează toate"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Demarchează toate"
@@ -692,16 +687,16 @@ msgid "Check tables having overhead"
msgstr "Verificare depășit"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportă"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Vizualizare imprimare"
@@ -713,28 +708,45 @@ msgstr "Golește"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Aruncă"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Verificare tabel"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizare tabel"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparare tabel"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizare tabel"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Nu sînt baze de date"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Înlocuiește datele tabelului cu fișier"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Înlocuiește datele tabelului cu fișier"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dicționar de date"
@@ -749,10 +761,10 @@ msgstr "Tabelele urmărite"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Baza de date"
@@ -760,38 +772,38 @@ msgstr "Baza de date"
msgid "Last version"
msgstr "Ultima versiune"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Creat(ă)"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Actualizat(ă)"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Stare"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Acțiune"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
#, fuzzy
msgid "Delete tracking data for this table"
msgstr "Șterge datele urmărite din acest tabel"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
#, fuzzy
msgid "active"
msgstr "activ(ă)"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
#, fuzzy
msgid "not active"
msgstr "inactiv(ă)"
@@ -800,12 +812,12 @@ msgstr "inactiv(ă)"
msgid "Versions"
msgstr "Versiuni"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
#, fuzzy
msgid "Tracking report"
msgstr "Raport de monitorizare"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Instantaneu al structurii"
@@ -814,8 +826,8 @@ msgstr "Instantaneu al structurii"
msgid "Untracked tables"
msgstr "Tabele fără monitorizare"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Tabele monitorizate"
@@ -876,11 +888,11 @@ msgstr "Copia a fost salvată în fișierul %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
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."
+"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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -949,6 +961,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Comanda dumneavoastră SQL a fost executată cu succes"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -975,264 +994,282 @@ msgstr "Click pentru a deselecta"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Sigur doriți să "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Proceduri"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
msgid "Deleting tracking data"
msgstr "Șterge datele urmărite din acest tabel"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Această operație poate dura. Doriți totuși să fie executată?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "You are about to DISABLE a BLOB Repository!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Are you sure you want to disable all BLOB references for database %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Valoarea lipsește în formular !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Acesta nu este un număr!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Numele gazdei este gol!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Numele de utilizator este gol!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Parola este goală!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Parolele nu corespund!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Adaugă un utilizator nou"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Creare relație"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Reîncărcarea drepturilor"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Eliminarea utilizatorilor selectați"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Renunță"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Local"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procese"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "E bine"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Redenumire bază de date în"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Redenumire bază de date în"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Copiază baza de date"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Set de caractere"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabelul trebuie să conțină cel puțin un cîmp."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Creare tabel"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Caută"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "Comanda SQL"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "Comanda SQL"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Motoare"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Salveaza"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Ascunde"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "Comanda SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "Comanda SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoră"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Alegere cheie referențiată"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Alegeți cheia străină"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Selectează un cîmp"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generează parolă"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generează"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Schimbare parolă"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Lun"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1242,111 +1279,116 @@ msgstr ""
"procesul de actualizare. Noua versiune este %s, publicată în data de %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "Ultima versiune"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Nu sînt baze de date"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Gata"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Următorul"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Ianuarie"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Februarie"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Martie"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Aprilie"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mai"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Iunie"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Iulie"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Septembrie"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Octombrie"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Noiembrie"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Decembrie"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Ian"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1354,178 +1396,178 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Iun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Iul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Noi"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dum"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Vin"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Dum"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Joi"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Vin"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sâm"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dum"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lun"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mie"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Joi"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Vin"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sâm"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "în folosință"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1578,33 +1620,33 @@ msgid "No index defined!"
msgstr "Index nu este definit!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indexuri"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unic"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Împachetat"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinalitate"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Comentariu"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editare"
@@ -1626,18 +1668,18 @@ msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Baze de date"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Eroare"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1646,7 +1688,7 @@ msgstr[0] "%1$d rînd(uri) afectat(e)."
msgstr[1] "%1$d rînd(uri) afectat(e)."
msgstr[2] "%1$d rînd(uri) afectat(e)."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1655,7 +1697,7 @@ msgstr[0] "%1$d rînd(uri) șters(e)."
msgstr[1] "%1$d rînd(uri) șters(e)."
msgstr[2] "%1$d rînd(uri) șters(e)."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1751,8 +1793,8 @@ msgstr "Bine ați venit la %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
@@ -1905,19 +1947,19 @@ msgstr "Tabele"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Date"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Asupra"
@@ -2016,16 +2058,16 @@ msgstr ""
"dumneavoastră."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Metodă de autentificare nevalidă stabilită în configurație:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua."
@@ -2060,7 +2102,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Documentație"
@@ -2211,7 +2253,7 @@ msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Structură"
@@ -2246,7 +2288,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "director de încărcare al serverului Web"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Directorul stabilit pentru încărcare nu poate fi găsit"
@@ -2417,7 +2459,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Resetare"
@@ -2534,7 +2576,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2666,7 +2708,7 @@ msgid "Character set of the file"
msgstr "Setul de caractere al fișierului"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2994,7 +3036,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Personalizează aspectul cadrului de navigare"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servere"
@@ -3756,7 +3798,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr "Metoda de autentificare de utilizat"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Tipul autentificării"
@@ -4224,9 +4266,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Parola"
@@ -4246,8 +4288,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Nume utilizator:"
@@ -4363,7 +4405,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4517,7 +4559,7 @@ msgstr "Evenimente"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nume"
@@ -4540,8 +4582,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Drepturi de acces"
@@ -4553,7 +4595,7 @@ msgstr "Rutine"
msgid "Return type"
msgstr "Tipul întors"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4572,23 +4614,23 @@ msgstr "Serverul nu răspunde"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(sau soclul serverului MySQL local nu este configurat momentan)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detalii..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Schimbare parolă"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Nu există parolă"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Re-tastează"
@@ -4612,7 +4654,7 @@ msgid "Create"
msgstr "Creează"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nu există drepturi de acces"
@@ -4744,12 +4786,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4768,7 +4810,7 @@ msgstr "Compresie"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Nici unul(a)"
@@ -4963,7 +5005,7 @@ msgstr "Sortare după cheie"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opțiuni"
@@ -5002,65 +5044,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Transformare navigator"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Linia a fost ștearsă"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Oprește"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "în interogarea"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Afișează înregistrări"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "comanda a durat %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Schimbare"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operațiuni asupra rezultatelor interogării"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Vizualizare listare (împreună cu text)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Arată schema PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Creare relație"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Legatură nevalidă"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informații despre versiune"
@@ -5500,8 +5542,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5622,9 +5664,9 @@ msgstr "Tipuri MIME disponibile"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Gazda"
@@ -5635,7 +5677,7 @@ msgid "Generation Time"
msgstr "Timp de generare"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versiune server"
@@ -5978,7 +6020,30 @@ msgstr "Nici unul(a)"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Vin"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Trimite"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Nici o schimbare"
@@ -6284,8 +6349,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Nume utilizator"
@@ -6308,7 +6373,7 @@ msgstr "Variabil"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Valoare"
@@ -6326,34 +6391,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Oricare utilizator"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Utilizare cîmp text"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Oricare gazdă"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Local"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Această gazdă"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Utilizare tabel gazde"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6419,7 +6484,7 @@ msgstr "Proprietăți"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6522,12 +6587,12 @@ msgid "Toggle scratchboard"
msgstr "dezactivare scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Limbă necunoscută: %1$s."
@@ -6607,7 +6672,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Execută interogare SQL asupra bazei de date %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Calendar"
@@ -6642,10 +6707,6 @@ msgstr "Delimitator"
msgid " Show this query here again "
msgstr " Afișează această comandă din nou aici "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Trimite"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Numai vizualizare"
@@ -6654,7 +6715,7 @@ msgstr "Numai vizualizare"
msgid "Location of the text file"
msgstr "Locația fișierului textual"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "director de încărcare al serverului Web"
@@ -6703,19 +6764,19 @@ msgstr "ÎNCEPUT RAW"
msgid "END RAW"
msgstr "SFÎRȘIT BRUT"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Citare neînchisă"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identificator nevalid"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Înșiruire de punctuație necunoscută"
@@ -6769,7 +6830,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6818,12 +6879,12 @@ msgid "As defined:"
msgstr "Conform definiției:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primar"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Tot textul"
@@ -6837,7 +6898,7 @@ msgstr ""
">Întrebați autorul de funcțiile îndeplinite de %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Motor de stocare"
@@ -6845,13 +6906,13 @@ msgstr "Motor de stocare"
msgid "PARTITION definition"
msgstr "Definiție PARTIȚIE"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Adaugă %s cîmp(uri)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7077,82 +7138,82 @@ msgstr "Niciun fișier nu a fost găsit în arhiva ZIP!"
msgid "Error in ZIP archive:"
msgstr "Eroare în arhiva ZIP:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Facilități generale"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL connection collation"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Facilități generale"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Versiune protocol"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Utilizator"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Setul de caractere MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Server Web"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Versiunea clientului MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Extensie PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Arată informația PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Pagina oficială phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Proprietăți"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Exportă"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Nici o schimbare"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7163,7 +7224,7 @@ msgstr ""
"Serverul MySQL poate fi astfel vulnerabil. Reparați neapărat această "
"greșeală."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7172,7 +7233,7 @@ msgstr ""
"Ați activat mbstring.func_overload în configurația PHP. Această opțiune nu "
"este compatibilă cu phpMyAdmin și poate duce la pierderea unor date!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7182,7 +7243,7 @@ msgstr ""
"charactere multi-octet. Fără extensia mbstring, phpMyAdmin nu poate diviza "
"șirurile corect și aceasta poate duce la rezultate neașteptate."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7190,26 +7251,26 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Fișierul de configurare necesită o expresie de protecție secretă "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7221,14 +7282,14 @@ msgstr ""
"Opțiunile adiționale pentru folosirea tabelelor intercalate au fost "
"dezactivate. Pentru a afla de ce ... %shere%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7238,7 +7299,7 @@ msgstr ""
"%s a serverului dumneavoastră MySQL. Această diferență poate cauza "
"comportamente imprevizibile."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7262,14 +7323,14 @@ msgstr "Fișiere"
msgid "filter tables by name"
msgstr "nume tabel"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Creare tabel"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Selectați baza de date"
@@ -7669,76 +7730,76 @@ msgid "Includes all privileges except GRANT."
msgstr "Include toate privilegiile, excluzand GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Permite alterarea structurii la tabelele deja existente."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Permite alterarea și aruncarea rutinelor stocate."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Permite crearea de noi baze de date și tabele."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Permite crearea rutinelor stocate."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Permite crearea de noi tabele."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Permite crearea de tabele temporare."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Permite crearea noilor viziuni."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Permite stergere de date."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Permite stergerea unei baze de date sau a unor tabele."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Permite aruncarea a unei baze de date."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Permite executarea rutinelor stocate."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
"Permite importarea datelor in fisiere și exportarea acestora din fisiere."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7746,36 +7807,36 @@ msgstr ""
"de drepturi."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Permite crearea și stergerea indexurilor."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Permite inserarea și înlocuirea datelor."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Permite blocarea tabelelor din firul curent de execuție."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7783,61 +7844,61 @@ msgstr ""
"Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei "
"baze de date executabile de utilizator într-o oră."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Permite vizualizarea proceselor tuturor utilizatorilor"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nu are efect în această versiune MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Permite utilizatorului de a interoga locația slave/master."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Necesară pentru „slave replication”."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Permite citirea datelor."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Permite accesul la lista completă a bazelor de date."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Permite executarea interogărilor SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Permite oprirea serverului."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7848,12 +7909,12 @@ msgstr ""
"variabilelor globale sau oprirea firelor de execuție a altor utilizatori."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Permite crearea și eliminarea declanșatorilor"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Permite schimbarea datelor."
@@ -7868,240 +7929,240 @@ msgctxt "None privileges"
msgid "None"
msgstr "Nici unul(a)"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Drepturi specifice de tabele"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Important: numele drepturilor de acces MySQL apar în engleză"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Privilegii globale"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Drepturi specifice bazei de date"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administrare"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Privilegii globale"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Drepturi specifice bazei de date"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limitare de resurse"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Informații de autentificare"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nu schimbați parola"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nu s-a găsit nici un utilizator."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Utilizatorul %s există deja!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Ați adăugat un nou utilizator."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ați actualizat privilegiile pentru %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Drepturile tale au fost revocate pentru %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Parola pentru %s a fost schimbată cu succes."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Șterge %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Nici un utilizator ales pentru ștergere!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Reîncărcarea drepturilor"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Utilizatorii selectați au fost eliminați."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Drepturile au fost reîncarcate cu succes."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Editează drepturile de acces"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Revocare"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Oricare"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Descriere utilizator"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Permite"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Adaugă un utilizator nou"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Eliminarea utilizatorilor selectați"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Drepturi specifice coloanei"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Adaugă drepturi la baza de date următoare"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Adaugă drepturi la următorul tabel"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Schimbă informațiile de autentificare/Copiază utilizator"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Creează un utilizator nou cu aceleași privilegii și..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... menține cel vechi."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... șterge cel vechi din tabelul de utilizatori."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Bază de date pentru utilizatorul"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Nici unul(a)"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Grant all privileges on wildcard name (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Verifică privilegiile pentru baza de date "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Utilizatorul are acces la "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "specific bazei de date"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "Metacaracter"
@@ -9234,7 +9295,7 @@ msgstr "Valoare sesiune"
msgid "Global value"
msgstr "Valoare globală"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Descarcă"
@@ -9267,58 +9328,70 @@ msgstr ""
msgid "Insecure connection"
msgstr "Comprimă conexiunea"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Modificările au fost salvate"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
#, fuzzy
msgid "New server"
msgstr "Server Web"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Afișează"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Documentație phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Date"
@@ -9546,66 +9619,66 @@ msgstr "Tabelul %1$s a fost alterat cu succes"
msgid "Function"
msgstr "Funcție"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr ""
"Datorită lungimii sale,
acest cîmp s-ar putea să nu fie editabil"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Remove BLOB Repository Reference"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binar - a nu se edita"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Inserează ca o nouă linie"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Afișare interogare SQL"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "și apoi"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Revenire"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Adaugă o nouă înregistrare"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Înapoi la această pagină"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Editează rîndul următor"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
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"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9769,7 +9842,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Adaugă la coloana(ele) index %s "
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Numărul coloanelor trebuie să fie mai mare de zero."
@@ -9795,101 +9868,101 @@ msgstr "Tabelul %s a fost copiat la %s."
msgid "The table name is empty!"
msgstr "Numele de tabel este gol!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Alterare „ordonare tabel după”"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singly)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Mută tabelul la (bază_de_date.tabel):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opțiuni tabel"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Redenumire tabel la"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Copiază tabelul la (bază_de_date.tabel):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Schimbă la tabela copiată"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Administrare tabel"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentare tabel"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabelul %s a fost curățat"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Curățarea tabelului (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
msgid "Delete data or table"
msgstr "Șterge datele urmărite din acest tabel"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Nu sînt baze de date"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Întreținerea partiției"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partiția %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analizează"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Verifică"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimizează"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Reconstruiește"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Repară"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Elimină partiționarea"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Verificarea integrității referinței:"
@@ -9897,39 +9970,39 @@ msgstr "Verificarea integrității referinței:"
msgid "Show tables"
msgstr "Arată tabelele"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Utilizare spațiu"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Utilizare"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efectiv"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statisticile rîndului"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Comenzi"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamic"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Lungime linie"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Mărime linie "
@@ -10016,57 +10089,57 @@ msgstr "Nici unul/una"
msgid "Column %s has been dropped"
msgstr "Tabelul %s a fost aruncat"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "A fost adăugată o cheie primară la %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "A fost adăugat un index la %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Arată informația PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Vizualizare relațională"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Propune structura de tabele"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Adaugă %s cîmp(uri)"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "La sfîrșitul tabelului"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "La începutul tabelului"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "După %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Creează un index pe %s coloană"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partiționat"
@@ -10094,109 +10167,134 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Tip interogare"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+msgid "Delete tracking data row from report"
+msgstr "Șterge datele urmărite din acest tabel"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Nu sînt baze de date"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Date"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Modul de export"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Persană"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Creare relație"
diff --git a/po/ru.po b/po/ru.po
index efbef963a4..ecd42cc42d 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,22 +1,22 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-13 21:17+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"
+"Language: ru\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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Показать все"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Поиск"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Поиск"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Имя индекса"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "База данных %1$s была создана."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Комментарий к базе данных:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Комментарий к таблице"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Комментарий к таблице"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Поле"
@@ -150,11 +150,11 @@ msgstr "Поле"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -164,8 +164,8 @@ msgstr "Тип"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -175,7 +175,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "По умолчанию"
@@ -198,39 +198,40 @@ msgstr "Связи"
msgid "Comments"
msgstr "Комментарии"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Нет"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Да"
@@ -242,8 +243,8 @@ msgstr "Печать"
msgid "View dump (schema) of database"
msgstr "Отобразить дамп (схему) базы данных"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Таблиц в базе данных не обнаружено."
@@ -269,78 +270,78 @@ msgstr "База данных %s переименована в %s"
msgid "Database %s has been copied to %s"
msgstr "База данных %s была скопирована в %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Переименовать базу данных в"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Команда"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Удалить базу данных"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "База данных %s была удалена."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Удалить базу данных (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Скопировать базу данных в"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Только структура"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структура и данные"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Только данные"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Перед копированием создать базу данных (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Добавить %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Добавить AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Добавить ограничения"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Переключиться на скопированную базу данных"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Сравнение"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -349,7 +350,7 @@ msgstr ""
"Некоторые из расширенных возможностей phpMyAdmin недоступны. Для определения "
"причины нажмите %sздесь%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Редакция или экспорт схемы связей"
@@ -357,17 +358,17 @@ msgstr "Редакция или экспорт схемы связей"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Таблица"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Строки"
@@ -383,21 +384,21 @@ msgstr "используется"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Создание"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Последнее обновление"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Последняя проверка"
@@ -409,98 +410,91 @@ msgstr[0] "%s таблица"
msgstr[1] "%s таблицы"
msgstr[2] "%s таблиц"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL-запрос был успешно выполнен"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr ""
"Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Переключиться на"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "визуальный составитель запросов"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Отсортировать"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "По возрастанию"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "По убыванию"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Показать"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Критерий"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Вставить"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "И"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Удалить"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Или"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Изменить"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Добавить/удалить строки критериея"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Добавить/удалить столбцы"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Дополнить запрос"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Использовать таблицы"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-запрос к базе данных %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Выполнить запрос"
@@ -542,7 +536,7 @@ msgstr[2] "%s соответствий в таблице %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Обзор"
@@ -551,14 +545,15 @@ msgstr "Обзор"
msgid "Delete the matches for the %s table?"
msgstr "Удалить соответствия для таблицы %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Удалить"
@@ -598,17 +593,17 @@ msgstr "В поле:"
msgid "No tables found in database"
msgstr "Таблиц в базе данных не найдено"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблица %s была очищена"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Представление %s было удалено"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблица %s была удалена"
@@ -621,11 +616,11 @@ msgstr "Слежение включено."
msgid "Tracking is not active."
msgstr "Слежение выключено."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
@@ -651,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "С отмеченными:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Отметить все"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Снять выделение"
@@ -675,16 +670,16 @@ msgid "Check tables having overhead"
msgstr "Отметить требующие оптимизации"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспорт"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Версия для печати"
@@ -696,28 +691,46 @@ msgstr "Очистить"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Удалить"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Проверить таблицу"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Оптимизировать таблицу"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Восстановить таблицу"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Анализ таблицы"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Перейти к таблице"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Заместить данные таблицы данными из файла"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Заместить данные таблицы данными из файла"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Словарь данных"
@@ -731,10 +744,10 @@ msgstr "Отслеживаемые таблицы"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "База данных"
@@ -742,36 +755,36 @@ msgstr "База данных"
msgid "Last version"
msgstr "Последняя версия"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Создан"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Обновлён"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Состояние"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Действие"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Удалить данные слежения за таблицей"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "включено"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "выключено"
@@ -779,11 +792,11 @@ msgstr "выключено"
msgid "Versions"
msgstr "Версии"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Отчёт слежения"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Обзор структуры"
@@ -791,8 +804,8 @@ msgstr "Обзор структуры"
msgid "Untracked tables"
msgstr "Неотслеживаемые таблицы"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Отслеживать таблицу"
@@ -851,8 +864,8 @@ msgstr "Дамп был сохранен в файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@@ -926,6 +939,13 @@ msgstr ""
"означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, "
"пока не будет увеличено ограничение времени выполнения php-сценариев."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL-запрос был успешно выполнен"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -950,225 +970,243 @@ msgstr "Снятие выделения"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Вы действительно хотите выполнить запрос"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "База данных будет полностью УДАЛЕНА!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "База данных будет полностью УДАЛЕНА!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "База данных будет полностью УДАЛЕНА!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Удаление события"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Удаление процедуры"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Удаление данных слежения"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Удаление первичного ключа/индекса"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Выполнение данной операции может занять длительное время. Продолжить?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Вы собираетесь ОТКЛЮЧИТЬ хранилище BLOB данных!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Вы уверены, что хотите отключить все BLOB ссылки для базы данных %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Не заполнены необходимые поля формы!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Введите число!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Пустое имя хоста!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Не задано имя пользователя!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Пароль не задан!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Некорректное подтверждение пароля!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Добавить нового пользователя"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Создать пользователя"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Перезагрузка привилегий"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Удаление выбранных пользователей"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Закрыть"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Отмена"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Загрузка"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Обработка запроса"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Ошибка при обработке запроса"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Удаление столбца"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Добавление первичного ключа"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Переименование базы данных"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Перезагрузка базы данных"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Копирование базы данных"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Смена кодировки"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "У таблицы должен быть, как минимум, один столбец"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Создать таблицу"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Поиск"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Скрыть поле запроса"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Отобразить поле запроса"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Быстрая правка"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Сохранить"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Скрыть"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Скрыть параметры поиска"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Отобразить параметры поиска"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнорировать"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Выберите ссылочный ключ"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Выберите внешний ключ"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
"Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) "
"индексом"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Выбор отображаемого столбца"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Добавить параметр для столбца"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Создать пароль"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генерировать"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Изменить пароль"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Ещё"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1178,254 +1216,260 @@ msgstr ""
"Новейшая версия %s, выпущена %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", последняя стабильная версия:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Перейти к базе данных"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Предыдущий"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Следующий"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Сегодня"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Январь"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Февраль"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Март"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Апрель"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Май"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Июнь"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Июль"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Август"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Сентябрь"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Октябрь"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Ноябрь"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Декабрь"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Воскресенье"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Понедельник"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Вторник"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Среда"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Четверг"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Пятница"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Суббота"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Вс"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Нед."
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Час"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Минута"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Секунда"
@@ -1480,33 +1524,33 @@ msgid "No index defined!"
msgstr "Индекс не определен!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Индексы"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Уникальный"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Упакован"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Уникальных элементов"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Комментарий"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Изменить"
@@ -1528,18 +1572,18 @@ msgstr "Индексы %1$s и %2$s равнозначны и один из ни
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Базы данных"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Ошибка"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -1547,7 +1591,7 @@ msgstr[0] "Затронута %1$d строка."
msgstr[1] "Затронуто %1$d строки."
msgstr[2] "Затронуто %1$d строк."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -1555,7 +1599,7 @@ msgstr[0] "Удалена %1$d строка."
msgstr[1] "Удалено %1$d строки."
msgstr[2] "Удалено %1$d строк."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1649,8 +1693,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
"можете воспользоваться %1$sсценарием установки%2$s."
@@ -1799,19 +1843,19 @@ msgstr "Таблицы"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Данные"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Всего"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Фрагментировано"
@@ -1902,17 +1946,17 @@ msgstr ""
"конфигурационном файле phpMyAdmin."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сервер"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
"В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Необходимо обновить %s до версии %s или выше."
@@ -1947,7 +1991,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Документация"
@@ -2096,7 +2140,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Структура"
@@ -2130,7 +2174,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Выберите из каталога загрузки сервера %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Установленный каталог загрузки не доступен"
@@ -2288,7 +2332,7 @@ msgstr "Разрешить пользователям изменять данн
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Сбросить"
@@ -2419,7 +2463,7 @@ msgid "Compress on the fly"
msgstr "Архивирование на лету"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Конфигурационный файл"
@@ -2551,7 +2595,7 @@ msgid "Character set of the file"
msgstr "Кодировка файла"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Формат"
@@ -2856,7 +2900,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Настройки отображения фрейма навигации"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Сервера"
@@ -3632,7 +3676,7 @@ msgstr "Конфигурационный файл SweKey"
msgid "Authentication method to use"
msgstr "Используемый метод идентификации"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Тип идентификации"
@@ -4160,9 +4204,9 @@ msgstr "Требуется подключенный SQL валидатор"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Пароль"
@@ -4186,8 +4230,8 @@ msgstr ""
"При наличии выделенного имени пользователя, пропишите его здесь (изначально "
"используется [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Пользователь"
@@ -4317,7 +4361,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Комментировать составные запросы"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Проверить обновление"
@@ -4475,7 +4519,7 @@ msgstr "События"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Имя"
@@ -4498,8 +4542,8 @@ msgid "Designer"
msgstr "Дизайнер"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Привилегии"
@@ -4511,7 +4555,7 @@ msgstr "Процедуры"
msgid "Return type"
msgstr "Возвращаемый тип"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4535,23 +4579,23 @@ msgstr "Сервер не отвечает"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(либо сокет локального MySQL-сервера некорректно настроен)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Детали..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Изменить пароль"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Без пароля"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Подтверждение"
@@ -4573,7 +4617,7 @@ msgid "Create"
msgstr "Создать"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Нет привилегий"
@@ -4679,8 +4723,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@@ -4702,7 +4746,7 @@ msgstr "Компрессия:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Нет"
@@ -4877,7 +4921,7 @@ msgstr "Сортировать по индексу"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Параметры"
@@ -4910,62 +4954,62 @@ msgstr "Показать BLOB содержимое"
msgid "Browser transformation"
msgstr "Преобразование"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Копировать"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Запись была удалена"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Завершить"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "по запросу"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Отображает строки"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "всего"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "запрос занял %01.4f сек."
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Изменить"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Использование результатов запроса"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Версия для печати (полностью)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Отобразить график"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Создать представление"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Связь не найдена"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Информация о версии"
@@ -5415,8 +5459,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице "
"PrimeBase XT%s."
@@ -5515,9 +5559,9 @@ msgstr "Отобразить MIME типы"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Хост"
@@ -5528,7 +5572,7 @@ msgid "Generation Time"
msgstr "Время создания"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Версия сервера"
@@ -5889,7 +5933,32 @@ msgstr "Нет"
msgid "Convert to Kana"
msgstr "Конвертировать в Кану"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Пт"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Выполнить"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Добавить индекс"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Нет изменений"
@@ -6199,8 +6268,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Имя пользователя"
@@ -6221,7 +6290,7 @@ msgstr "Переменная"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Значение"
@@ -6241,34 +6310,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Добавьте подчиненного пользователя репликации"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Любой пользователь"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Использовать текстовое поле"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Любой хост"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Локальный"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Этот хост"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Использовать таблицу хостов"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6332,7 +6401,7 @@ msgstr "Атрибуты"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Дополнительно"
@@ -6425,12 +6494,12 @@ msgid "Toggle scratchboard"
msgstr "Отображение"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Неизвестный язык: %1$s."
@@ -6503,7 +6572,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Очистить"
@@ -6535,10 +6604,6 @@ msgstr "Разделитель"
msgid " Show this query here again "
msgstr "Показать данный запрос снова"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Выполнить"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Просмотр"
@@ -6547,7 +6612,7 @@ msgstr "Просмотр"
msgid "Location of the text file"
msgstr "Выбор файла"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Из каталога загрузки"
@@ -6597,19 +6662,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "В конец запроса была автоматически добавлена обратная кавычка!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Незакрытая кавычка"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Неправильный идентификатор"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Неизвестная пунктуация"
@@ -6657,7 +6722,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Индекс"
@@ -6704,12 +6769,12 @@ msgid "As defined:"
msgstr "Как определено:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Первичный"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Полнотекстовый"
@@ -6723,7 +6788,7 @@ msgstr ""
"отображения преобразования %s, будет в скором времени описана."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Тип таблиц"
@@ -6731,12 +6796,12 @@ msgstr "Тип таблиц"
msgid "PARTITION definition"
msgstr "Определение разделов (PARTITION)"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Добавить %s поле(я)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Необходимо добавить хотя бы одно поле."
@@ -6918,73 +6983,73 @@ msgstr "Файлов внутри ZIP-архива не найдено!"
msgid "Error in ZIP archive:"
msgstr "Ошибка в ZIP-архиве:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Основные настройки"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Сопоставление соединения с MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Настройки внешнего вида"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Дополнительные настройки"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Версия протокола"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Пользователь"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-кодировка"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Веб-сервер"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Версия MySQL-клиента"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP расширение"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Показать информацию PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Вики"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Официальная страница phpMyAdmin"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Пожертвования"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Получение помощи"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Список изменений"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6997,7 +7062,7 @@ msgstr ""
"доступа, поэтому настоятельно рекомендуется установить пароль для "
"пользователя 'root'."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7007,7 +7072,7 @@ msgstr ""
"func_overload. Для предотвращения возможной потери данных, данный параметр "
"должен быть выключен!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7018,7 +7083,7 @@ msgstr ""
"разбиение строк, что может привести к непредсказуемым результатам. "
"Установите расширение PHP "mbstring"."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7030,7 +7095,7 @@ msgstr ""
"cookie определенная в phpMyAdmin, по этой причине, данные входа истекут "
"быстрее установленных."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -7038,13 +7103,13 @@ msgstr ""
"Параметр хранения cookie данных меньше, чем длительность cookie определенная "
"в phpMyAdmin, по этой причине, данные входа истекут быстрее установленных."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"При cookie-аутентификации, в конфигурационном файле необходимо задать "
"парольную фразу установив значение директивы $cfg['blowfish_secret']."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7054,7 +7119,7 @@ msgstr ""
"находится в установочной директории phpMyAdmin. Обязательно удалите его "
"сразу после настройки phpMyAdmin."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7063,7 +7128,7 @@ msgstr ""
"Дополнительные возможности phpMyAdmin не настроены в полной мере, некоторые "
"функции были отключены. Для определения причины нажмите %sздесь%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7073,7 +7138,7 @@ msgstr ""
"функции phpMyAdmin будет отсутствовать. Например, фрейм навигации не будет "
"обновляться автоматически."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7082,7 +7147,7 @@ msgstr ""
"Версия клиентской библиотеки MySQL (%s) отличается от версии установленного "
"MySQL-сервера (%s). Это может привести к некорректной работе."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7103,12 +7168,12 @@ msgstr "Фильтр"
msgid "filter tables by name"
msgstr "фильтровать таблицы по имени"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Создать таблицу"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Выберите базу данных"
@@ -7475,76 +7540,76 @@ msgid "Includes all privileges except GRANT."
msgstr "Содержит все привилегии, за исключением GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Разрешает изменение структуры существующих таблиц."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Разрешает изменение и удаление хранимых процедур."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Разрешает создание новых баз данных и таблиц."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Разрешает создание хранимых процедур."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Разрешает создание новых таблиц."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Разрешает создание временных таблиц."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Разрешает создание, удаление и переименование учетных записей пользователей."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Разрешает создание новых представлений (CREATE VIEW)."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Разрешает удаление данных."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Разрешает удаление баз данных и таблиц."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Разрешает удаление таблиц."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Разрешает настройку отложенных событий"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Разрешает выполнение хранимых процедур."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Разрешает импорт и экспорт данных в файлы."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7552,36 +7617,36 @@ msgstr ""
"привилегий."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Разрешает создание и удаление индексов."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Разрешает вставку и замену данных."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Разрешает блокировку таблиц для текущего потока."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Максимальное количество новых подключений, которые пользователь может "
"установить в течение часа."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
"Максимальное количество запросов, которые пользователь может отправить в "
"течение часа."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7589,59 +7654,59 @@ msgstr ""
"Максимальное количество команд изменяющих какую-либо таблицу или базу "
"данных, которые пользователь может выполнить в течение часа."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Максимальное количество одновременных подключений одного пользователя."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Разрешает просмотр процессов всех пользователей"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Не доступно в данной версии MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
"Разрешает запрашивать местонахождение головного и подчиненных серверов."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Необходимо для подчиненных серверов при репликации."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Разрешает выборку данных."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Разрешает доступ к полному списку баз данных."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Разрешает остановку сервера."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7653,12 +7718,12 @@ msgstr ""
"пользователей)."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Разрешает создание и удаление триггеров"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Разрешает изменение данных."
@@ -7671,237 +7736,237 @@ msgctxt "None privileges"
msgid "None"
msgstr "Нет"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Привилегии уровня таблицы"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "Примечание: типы привилегий MySQL отображаются по-английски"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глобальные привилегии"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Привилегии уровня базы данных"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Администрирование"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глобальные привилегии"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Привилегии уровня базы данных"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ограничение на использование ресурсов"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"Замечание: Установка значения параметров в 0 (ноль), снимает ограничения."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Информация учетной записи"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Не менять пароль"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Пользователь не найден."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Пользователь %s уже существует!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Был добавлен новый пользователь."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Были изменены привилегии для %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Отменены привилегии для %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Пароль для %s был успешно изменен."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Удаление %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Не выбраны пользователи подлежащие удалению!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Перезагрузка привилегий"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Выбранные пользователи были успешно удалены."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Привилегии были успешно перезагружены."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Редактирование привилегий"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Отменить"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Любой"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Обзор учетных записей"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Добавить нового пользователя"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Удалить выделенных пользователей"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Отменить все активные привилегии пользователей и затем удалить их."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Удалить базы данных, имена которых совпадают с именами пользователей."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Выделенный пользователь не был найден в таблице привилегий."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Привилегии уровня столбца"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Добавить привилегии на следующую базу"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"При использовании в имени базы данных символов нижнего подчеркивания _ и "
"процента %, необходимо экранировать их символом обратной косой черты \\, в "
"противном случае они будут интерпретированы как групповые символы"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Добавить привилегии на следующую таблицу"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Изменить/Копировать учетную запись"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Создать нового пользователя с такими же привилегиями..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "и сохранить старого."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr "и удалить старого из таблиц пользователей."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ", отменить все активные привилегии старого и затем удалить его."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "База данных для пользователя"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Нет"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
"Создать базу данных с именем пользователя в названии и предоставить на нее "
"полные привилегии"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Предоставить полные привилегии на базы данных подпадающие под шаблон (имя "
"пользователя\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Выставить полные привилегии на базу данных "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Пользователи с правами доступа к "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "Глобальный уровень"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Уровень базы данных"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "Групповой символ"
@@ -8920,8 +8985,8 @@ msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
-"Статистика запросов: со времени запуска, на сервер было отослано запросов - "
-"%s."
+"Статистика запросов: со времени запуска, на сервер было отослано запросов - %"
+"s."
#: server_status.php:626
msgid "per minute"
@@ -9071,7 +9136,7 @@ msgstr "Значение сессии"
msgid "Global value"
msgstr "Глобальное значение"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Скачать"
@@ -9112,55 +9177,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Небезопасное соединение"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Хранение конфигурации"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Обзор"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Показать скрытые сообщения (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Отсутствуют настроенные сервера"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Новый сервер"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Язык по умолчанию"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "Предоставить выбор пользователю"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- не выбран -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Сервер по умолчанию"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Конец строки"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Показать"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Загрузить"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Домашняя страница phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Пожертвование"
@@ -9327,8 +9404,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"При необходимости используйте дополнительные настройки безопасности - "
-"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
+"При необходимости используйте дополнительные настройки безопасности - %"
+"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
@@ -9434,62 +9511,62 @@ msgstr "Таблица %1$s была успешно изменена"
msgid "Function"
msgstr "Функция"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr "Из-за большого количества данных
изменение поля невозможно"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Удалить ссылку хранилища BLOB данных"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Двоичные данные - не редактируются"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Загрузить в хранилище BLOB данных"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Вставить запись"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Отобразить запрос вставки"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "и затем"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Вернуться на предыдущую страницу"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Добавить новую запись"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Вернуться к данной странице"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Редактировать следующую строку"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Для перемещения между полями значения, используйте клавишу TAB, либо CTRL"
"+клавиши со стрелками - для свободного перемещения"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Продолжить вставку с %s строки"
@@ -9646,7 +9723,7 @@ msgstr "(Имя \"PRIMARY\" должен иметь только перв
msgid "Add to index %s column(s)"
msgstr "Добавить к индексу %s столбец(ы)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Количество столбцов должно быть больше нуля."
@@ -9672,97 +9749,97 @@ msgstr "Таблица %s была скопирована в %s."
msgid "The table name is empty!"
msgstr "Не задано имя таблицы!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Изменить сортировку таблицы"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(столбец)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Переместить таблицы в (база данных.таблица):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Параметры таблицы"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Переименовать таблицу в"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Скопировать таблицу в (база данных.таблица):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Переключиться на скопированную таблицу"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Обслуживание таблицы"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Дефрагментировать таблицу"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Обновлен кеш таблицы %s"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Обновить кеш таблицы (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Удалить данные или таблицу"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Очистить таблицу (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Удалить таблицу (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Обслуживание разделов"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Раздел %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Анализ"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Проверка"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Оптимизация"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Перестройка"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Исправление"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Удалить разделение"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Проверить целостность данных:"
@@ -9770,39 +9847,39 @@ msgstr "Проверить целостность данных:"
msgid "Show tables"
msgstr "Отображение таблиц"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Используемое пространство"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Использование"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Эффективность"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Статистика строк"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Характеристика"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "статический"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "динамический"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Длина строки"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Размер строки"
@@ -9881,52 +9958,52 @@ msgstr "Нет"
msgid "Column %s has been dropped"
msgstr "Поле %s было удалено"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Был добавлен первичный ключ к %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Был добавлен индекс для %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Показать больше операций"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Связи"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Анализ структуры таблицы"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Добавить столбец"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "В конец таблицы"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "В начало таблицы"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "После %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Создать индекс для %s столбца/ов"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "разделён"
@@ -9954,7 +10031,7 @@ msgstr "Отслеживание %s.%s, версии %s включено."
msgid "SQL statements executed."
msgstr "Выполненные SQL запросы."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9963,101 +10040,131 @@ msgstr ""
"временную базу данных. Убедитесь, что у вас есть для этого достаточные "
"привилегии."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Закомментируйте эти две строки, если они вам не нужны."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Обзор версии %s (SQL код)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Отслеживать выражения определяющие структуру:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Собирать ошибки"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Отслеживать выражения изменяющие данные:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Отслеживаемые выражения"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Вывести %s с датой от %s до %s пользователя %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Удалить данные слежения за таблицей"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Базы данных отсутствуют"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Дата"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Выражение определяющее структуру"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Выражение изменяющее данные"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Выгрузка SQL (файл)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Выгрузка SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Выполнение SQL запроса"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Экспортировать как %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Показать версии"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Версия"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Выключить слежение за %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Выключить"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Включить слежение за %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Включить"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Создать версию %s из %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Отслеживать выражения определяющие структуру:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Отслеживать выражения изменяющие данные:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Создать версию"
@@ -10067,8 +10174,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге "
-"%s."
+"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %"
+"s."
#: themes.php:41
msgid "Get more themes!"
diff --git a/po/si.po b/po/si.po
index 928acefe3a..47562f65ce 100644
--- a/po/si.po
+++ b/po/si.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-05-04 14:56+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
-"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: si\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "සියල්ල පෙන්වන්න"
@@ -34,9 +34,8 @@ msgid ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-"ඉලක්කගත බ්රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ "
-"ඔබගේ බ්රව්සරයේ ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස "
-"සකසා තිබීම මීට හේතු විය හැක."
+"ඉලක්කගත බ්රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්රව්සරයේ "
+"ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක."
#: browse_foreigners.php:151 libraries/common.lib.php:2828
#: libraries/common.lib.php:2835 libraries/common.lib.php:3014
@@ -45,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "සෙවීම"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +62,22 @@ msgstr "සෙවීම"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "යන්න"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "යතුරු නම"
@@ -111,25 +110,24 @@ msgstr "දුරස්ථ URL විවෘත කිරීම අසමත්
msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
-msgstr ""
-"%s ගොනුව මෙම පද්ධතියේ නොමැත. වැඩි විස්තර සඳහා www.phpmyadmin.net වෙත යන්න."
+msgstr "%s ගොනුව මෙම පද්ධතියේ නොමැත. වැඩි විස්තර සඳහා www.phpmyadmin.net වෙත යන්න."
#: db_create.php:58
#, php-format
msgid "Database %1$s has been created."
msgstr "%1$s දත්තගබඩාව සාදන ලදි."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "දත්තගබඩා විස්තර: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "වගු විස්තර"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +135,7 @@ msgstr "වගු විස්තර"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "තීර"
@@ -148,11 +146,11 @@ msgstr "තීර"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "වර්ගය"
@@ -162,8 +160,8 @@ msgstr "වර්ගය"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +171,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "පෙරනිමි"
@@ -196,39 +194,40 @@ msgstr "Links to"
msgid "Comments"
msgstr "විස්තරය"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "නැත"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "ඔව්"
@@ -240,8 +239,8 @@ msgstr "මුද්රණය කරන්න"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත."
@@ -267,78 +266,78 @@ msgstr "%s දත්තගබඩාව %s බවට නම වෙනස් ක
msgid "Database %s has been copied to %s"
msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කරන ලදි"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "විධානය"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "දත්තගබඩාව ඉවත් කරන්න"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s දත්තගබඩාව හලන ලදි."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "දත්තගබඩාව හලන්න. (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "සැකිල්ල පමණයි"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "සැකිල්ල සහ දත්ත"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "දත්ත පමණයි"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "පිටපත් කිරීමට ප්රථම දත්තගබඩාවක් සාදන්න"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s එක් කරන්න"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT අගයක් එක් කරන්න"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "සීමා බාධවන් එක් කරන්න"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙත මාරු වන්න"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -347,7 +346,7 @@ msgstr ""
"phpMyAdmin හි configuration storage අක්රිය කර ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් "
"කරන්න."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "ක්රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න"
@@ -355,17 +354,17 @@ msgstr "ක්රමානුරූපය සංස්කරණය හෝ අ
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "වගුව"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "පේළි"
@@ -381,21 +380,21 @@ msgstr "භාවිතා වෙමින් පවතී"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "සෑදීම"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "අවසන් යාවත් කාලීන කිරීම"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "අවසන් පරීක්ෂාව"
@@ -406,97 +405,90 @@ msgid_plural "%s tables"
msgstr[0] "%s වගු"
msgstr[1] "%s වගු"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්රියාවට නංවන ලදි"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "මාරු වන්න"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "දෘශ්ය ගොඩනංවනය"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "සුබෙදන්න"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "ආරෝහන"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "අවරෝහන"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "පෙන්වන්න"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "නිර්ණායක"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "සහ"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "හෝ"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "වෙනස් කිරීම"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "තීර එක් කරන්න/ඉවත් කරන්න"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "විමසුම යාවත්කාලීන කරන්න"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "වගු භාවිතා කරන්න"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "%s දත්තගබඩාව මත SQL විමසුම:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
@@ -537,24 +529,24 @@ msgstr[1] "%s වගුව තුල ගැලපීම් %s කි"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "පිරික්සන්න"
#: db_search.php:259
#, php-format
-#| msgid "Dumping data for table"
msgid "Delete the matches for the %s table?"
msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "ඉවත් කරන්න"
@@ -593,17 +585,17 @@ msgstr "තීරය තුල:"
msgid "No tables found in database"
msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "%s වගුව හිස් කරන ලදි"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "%s දසුන හලන ලදි"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "%s වගුව හලන ලදි"
@@ -616,14 +608,13 @@ msgstr "අවධානය සක්රීයයි."
msgid "Tracking is not active."
msgstr "අවධානය අක්රීයයි."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය "
-"කරන්න."
+"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -646,22 +637,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "තෝරාගත්:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "සියල්ල කතිර කොටුගත කරන්න"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න"
@@ -670,16 +661,16 @@ msgid "Check tables having overhead"
msgstr "Check tables having overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "අපනයනය"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "මුද්රණ දර්ශනය"
@@ -691,28 +682,45 @@ msgstr "හිස්"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "හලන්න"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "වගුව පරීක්ෂා කරන්න"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "ප්රශස්තගත වගුව"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "වගුව ප්රතිසංස්කරණය කරන්න"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "වගුව විශ්ලේෂණය කරන්න"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "දත්තගබඩා නොමැත"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "වගුවේ දත්ත ගොනුවෙන් ප්රතිස්ථාපනය කරන්න"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "වගුවේ දත්ත ගොනුවෙන් ප්රතිස්ථාපනය කරන්න"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "දත්ත කෝෂය"
@@ -726,10 +734,10 @@ msgstr "අවධානය සක්රීය වගු"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "දත්තගබඩාව"
@@ -737,36 +745,36 @@ msgstr "දත්තගබඩාව"
msgid "Last version"
msgstr "අවසන් අනුවාදය"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "සාදන ලදි"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "යාවත්කාලීන කරන ලදි"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "තත්වය"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "ක්රියාව"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "සක්රිය"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "අක්රිය"
@@ -774,12 +782,12 @@ msgstr "අක්රිය"
msgid "Versions"
msgstr "අනුවාද"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "අවධානය පිළිබඳ වාර්තාව"
# සැණරුව = snapshot. Source: Glossary of Information Technology terms - ICTA
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "සැකිල්ලේ සැණරුව"
@@ -787,8 +795,8 @@ msgstr "සැකිල්ලේ සැණරුව"
msgid "Untracked tables"
msgstr "අවධානය අක්රීය වගු"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "වගුව අවධානයට ලක් කරන්න"
@@ -846,11 +854,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -916,6 +924,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්රියාවට නංවන ලදි"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -940,488 +955,511 @@ msgstr "තේරීම අවලංගු කිරීමට ක්ලික්
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ප්රකාශ අක්රීය කර ඇත."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "ඔබට ඇත්තෙන්ම අවශ්යද "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
-#| msgid "Procedures"
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "ක්රියාපටිපාටිය හලමින්"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "අවධානය පිළිබඳ දත්ත ඉවත් කෙරෙමින්"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "ප්රාථමික මූලය/සුචිය ඉවත් කෙරෙමින්"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "This operation could take a long time. Proceed anyway?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "පෝරමයේ අස්ථනගත වූ අගයන් ඇත!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "මෙය අංකයක් නොවේ!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "දාරක නම හිස්ව පවතී!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "භාවිත නාමය හිස්ව පවතී!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "The password is empty!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "The passwords aren't the same!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "නව භාවිතා කරන්නෙක් එක් කරන්න"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "භාවිතා කරන්නෙක් සාදන්න"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "වරප්රසාද පූරණය කෙරෙමින්"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කෙරෙමින්"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "වසන්න"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "අවලංගු කරන්න"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "පූරණය කෙරෙමින්"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "ඉල්ලීම පිරිසැකසෙමින්"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "තීරුව හලමින්"
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "ප්රාථමික මූලය එක් කරමින්"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "දත්තගබඩාවල නම් වෙනස් කෙරෙමින්"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "දත්තගබඩාව පූරණය"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "දත්තගබඩාව පිටපත් කෙරෙමින්"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "අක්ෂර කට්ටලය වෙනස් කෙරෙමින්"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්රයක්වත් තිබිය යුතුයි"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "වගුව සාදන්න"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "සොයමින්"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "විමසුම් කවුළුව සඟවන්න"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "විමසුම් කවුළුව පෙන්වන්න"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "පේළිගත සංස්කරණය"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "සුරකින්න"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "සඟවන්න"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL විමසුම"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL විමසුම"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "නොසලකන්න"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "අන්ය මූලය තෝරන්න"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "කරුණාකර ප්රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "පෙන්වීම සඳහා තීරය තෝරාගන්න"
-# අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+# අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "ක්ෂේත්රයට අභිරුචියක් එක් කරන්න "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "මුරපදය උත්පාදනය කරන්න"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "උත්පාදනය කරන්න"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "මුරපදය වෙනස් කරන්න"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "තවත්"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"නව phpMyAdmin අනුවාදයක් නිකුත් වී ඇති බැවින් එය ලබා ගැනීම සලකා බලන්න. නවතම "
-"phpMyAdmin අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)."
+"නව phpMyAdmin අනුවාදයක් නිකුත් වී ඇති බැවින් එය ලබා ගැනීම සලකා බලන්න. නවතම phpMyAdmin "
+"අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", නවතම ස්ථායි අනුවාදය:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "දත්තගබඩාව වෙත යන්න"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "තෝරන්න"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "පෙර"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "මීලඟ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "අද දින"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "ජනවාරි"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "පෙබරවාරි"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "මාර්තු"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "අප්රේල්"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "මැයි"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "ජුනි"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "ජූලි"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "අගෝස්තු"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "සැප්තැම්බර්"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "ඔක්තෝම්බර්"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "නොවැම්බර්"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "දෙසැම්බර්"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "ජනවාරි"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "පෙබරවාරි"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "මාර්තු"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "අප්රේල්"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "මැයි"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "ජුනි"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "ජූලි"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "අගෝස්තු"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "සැප්තැම්බර්"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "ඔක්තෝම්බර්"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "නොවැම්බර්"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "දෙසැම්බර්"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "ඉරිදා"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "සඳුදා"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "අඟහරුවදා"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "බදාදා"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "බ්රහස්පතින්දා"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "සිකුරාදා"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "සෙනසුරාදා"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "සඳුදා"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "අඟහ"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "බදාදා"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "බ්රහස්"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "සිකුරා"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "සෙනසු"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "ඉරි"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "සඳු"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "අඟ"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "බදා"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "බ්රහ"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "සිකු"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "සෙන"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "සති"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "පැය"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "මිනිත්තු"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "තත්පර"
@@ -1464,41 +1502,41 @@ 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/Index.class.php:427 tbl_relation.php:526
msgid "No index defined!"
msgstr "No index defined!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "සූචියන්"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "අනන්ය"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "අහුරන ලද"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "ටීකාව"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "සංස්කරණය කරන්න"
@@ -1520,32 +1558,32 @@ msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එ
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "දත්තගබඩා"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "දෝෂය"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "පේළියකට බලපෑවේය."
msgstr[1] "පේළි %1$dකට බලපෑවේය."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි."
msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1638,8 +1676,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Probably reason of this is that you did not create configuration file. You "
"might want to use %1$ssetup script%2$s to create one."
@@ -1696,9 +1734,7 @@ msgstr "මෙම ස්ථානය පසු කිරීම සඳහා ක
#: libraries/auth/signon.auth.lib.php:206
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
-msgstr ""
-"මුර පදයක් නොමැතිව ඇතුල් වීම ඔබගේ සිටුවම් මගින් වලකා ඇත. (AllowNoPassword "
-"බලන්න)"
+msgstr "මුර පදයක් නොමැතිව ඇතුල් වීම ඔබගේ සිටුවම් මගින් වලකා ඇත. (AllowNoPassword බලන්න)"
#: libraries/auth/cookie.auth.lib.php:647
#: libraries/auth/signon.auth.lib.php:210
@@ -1789,19 +1825,19 @@ msgstr "වගු"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "දත්ත"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "මුළු එකතුව"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "පිරිවැය"
@@ -1870,7 +1906,6 @@ msgstr ""
#: libraries/common.inc.php:587
#, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය"
@@ -1884,7 +1919,6 @@ msgstr ""
#: libraries/common.inc.php:622
#, php-format
-#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "අවලංගු සේවාදායක සුචිය: %s"
@@ -1894,16 +1928,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Invalid hostname for server %1$s. Please review your configuration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "සේවාදායකය"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Invalid authentication method set in configuration:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "You should upgrade to %s %s or later."
@@ -1938,7 +1972,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "ලියකියවිලි"
@@ -2086,7 +2120,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "සැකිල්ල"
@@ -2116,12 +2150,11 @@ msgstr "පරිගණකය තුළ පිරික්සන්න:"
#: libraries/common.lib.php:2979
#, php-format
-#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක"
@@ -2279,7 +2312,7 @@ msgstr "මෙම අගය වෙනස් කිරීමට භවිතා
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "ප්රතිසකසන්න"
@@ -2320,8 +2353,7 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
-"[kbd]කුකී [/kbd] සත්යාපනය භවිතා කිරීමේදී කුකිය encrypt කිරීමට යොදාගන්නා "
-"රහස් වාක්ය ඛණ්ඩය"
+"[kbd]කුකී [/kbd] සත්යාපනය භවිතා කිරීමේදී කුකිය encrypt කිරීමට යොදාගන්නා රහස් වාක්ය ඛණ්ඩය"
#: libraries/config/messages.inc.php:25
msgid "Blowfish secret"
@@ -2348,8 +2380,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
-"ආනයන, අපනයාන සඳහා [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] හැකිළීම "
-"සක්රීය කරන්න"
+"ආනයන, අපනයාන සඳහා [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] හැකිළීම සක්රීය "
+"කරන්න"
#: libraries/config/messages.inc.php:31
msgid "Bzip2"
@@ -2397,7 +2429,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "වින්යාස ගොනුව"
@@ -2488,7 +2520,6 @@ msgid "Edit in window"
msgstr "මීලඟ පේළිය එක් කරන්න"
#: libraries/config/messages.inc.php:62
-#| msgid "Display Features"
msgid "Display errors"
msgstr "දෝෂ පෙන්වන්න"
@@ -2523,7 +2554,7 @@ msgid "Character set of the file"
msgstr "ගොනුවේ අක්ෂර කට්ටලය"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "ආකෘතිය"
@@ -2540,7 +2571,6 @@ msgstr "Compression"
#: libraries/export/latex.php:71 libraries/export/ods.php:24
#: libraries/export/odt.php:57 libraries/export/texytext.php:27
#: libraries/export/xls.php:24 libraries/export/xlsx.php:24
-#| msgid "Put fields names in the first row"
msgid "Put columns names in the first row"
msgstr "තීර නම් පළමු පේළියේ යොදන්න"
@@ -2580,7 +2610,6 @@ msgid "Lines terminated by"
msgstr "පේළි අවසන් කිරීමේ සළකුණ"
#: libraries/config/messages.inc.php:80
-#| msgid "Excel edition"
msgid "Excel edition"
msgstr "එක්සෙල් සංස්කරණය"
@@ -2636,7 +2665,6 @@ msgid "Relations"
msgstr "Relations"
#: libraries/config/messages.inc.php:103
-#| msgid "Export type"
msgid "Export method"
msgstr "අපනයන ක්රමය"
@@ -2654,7 +2682,6 @@ msgid "Remember file name template"
msgstr "ගොනු නාම ටෙම්ප්ලේටය මතක තබා ගන්න"
#: libraries/config/messages.inc.php:118
-#| msgid "Enclose table and field names with backquotes"
msgid "Enclose table and column names with backquotes"
msgstr "වගු සහ තීර නම් පසු-උදෘත මගින් අවුරන්න"
@@ -2782,7 +2809,6 @@ msgid "Features"
msgstr "විශේෂාංග"
#: libraries/config/messages.inc.php:165
-#| msgid "Generate"
msgid "General"
msgstr "සාමාන්ය"
@@ -2829,7 +2855,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "යාත්රණ රාමුවේ පෙනුම රිසි සේ සකසන්න"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "සේවාදායකයන්"
@@ -2850,7 +2876,6 @@ msgid "Microsoft Office"
msgstr "මයික්රොසොෆ්ට් ඔෆිස්"
#: libraries/config/messages.inc.php:185
-#| msgid "Open Document Text"
msgid "Open Document"
msgstr "Open Document"
@@ -2863,7 +2888,6 @@ msgid "Settings that didn't fit enywhere else"
msgstr ""
#: libraries/config/messages.inc.php:189
-#| msgid "Page number:"
msgid "Page titles"
msgstr "පිටු නාම"
@@ -2894,8 +2918,7 @@ msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL"
msgstr ""
-"phpMyAdmin අතුරුමුහුණතක් පමණක් බව හා MySQL හි විශේෂාංග මෙයට සීමා නොවන බව "
-"කරුණාවෙන් සලකන්න"
+"phpMyAdmin අතුරුමුහුණතක් පමණක් බව හා MySQL හි විශේෂාංග මෙයට සීමා නොවන බව කරුණාවෙන් සලකන්න"
#: libraries/config/messages.inc.php:195
msgid "Basic settings"
@@ -2979,7 +3002,6 @@ msgid "SQL queries settings"
msgstr "SQL විමසුම් සිටුවම්"
#: libraries/config/messages.inc.php:217
-#| msgid "SQL history"
msgid "SQL Validator"
msgstr "SQL වලංගු කරණය"
@@ -3035,8 +3057,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
-"ආනයන හා අපනයන සඳහා [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] හැකිළුම "
-"සක්රීය කරන්න"
+"ආනයන හා අපනයන සඳහා [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] හැකිළුම සක්රීය "
+"කරන්න"
#: libraries/config/messages.inc.php:230
msgid "GZip"
@@ -3062,9 +3084,8 @@ msgid ""
"This might be good way to import large files, however it can break "
"transactions."
msgstr ""
-"කාල සීමාව අවසානයට ආසන්න බව දැණුනු විට අනයනනයට බාධා කිරීම සිදුකරන්න. විශාල "
-"ගොනු ආනයනයට මෙය හොඳ ක්රමයක් වන නමුත් මෙමඟින් transactions බිඳීම සිදුවිය "
-"හැක."
+"කාල සීමාව අවසානයට ආසන්න බව දැණුනු විට අනයනනයට බාධා කිරීම සිදුකරන්න. විශාල ගොනු ආනයනයට "
+"මෙය හොඳ ක්රමයක් වන නමුත් මෙමඟින් transactions බිඳීම සිදුවිය හැක."
#: libraries/config/messages.inc.php:235
msgid "Partial import: allow interrupt"
@@ -3096,7 +3117,6 @@ msgstr "LOCAL මූල පදය භාවිතා කරන්න"
#: libraries/config/messages.inc.php:251 libraries/config/messages.inc.php:259
#: libraries/config/messages.inc.php:260
-#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "පළමු පේලියේ තීරු නම්"
@@ -3113,7 +3133,6 @@ msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)"
#: libraries/config/messages.inc.php:255
-#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start"
msgstr "ආරම්භයේ සිට ඇත හැරිය යුතු විමසුම් ගණන"
@@ -3375,7 +3394,6 @@ msgid "Use natural order for sorting table and database names"
msgstr ""
#: libraries/config/messages.inc.php:318
-#| msgid "Alter table order by"
msgid "Natural order"
msgstr "ස්වභාවික අනුපිළිවල"
@@ -3468,17 +3486,14 @@ msgid "Query window height (in pixels)"
msgstr ""
#: libraries/config/messages.inc.php:341
-#| msgid "Query window"
msgid "Query window height"
msgstr "විමසුම් කවුළුවේ උස"
#: libraries/config/messages.inc.php:342
-#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "විමසුම් කවුළුවේ පළල (pixel වලින්)"
#: libraries/config/messages.inc.php:343
-#| msgid "Query window"
msgid "Query window width"
msgstr "විමසුම් කවුළුවේ පළල"
@@ -3495,7 +3510,6 @@ msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
#: libraries/config/messages.inc.php:347
-#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "ශීර්ෂකය නැවත නැවතත් පෙන්වන්න"
@@ -3562,7 +3576,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -3730,7 +3744,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:400
-#| msgid "database name"
msgid "Database name"
msgstr "දත්තගබඩාවේ නම"
@@ -4024,9 +4037,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "මුරපදය"
@@ -4046,8 +4059,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "භාවිත නාමය"
@@ -4162,7 +4175,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4309,7 +4322,7 @@ msgstr "සිද්ධි"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "නම"
@@ -4332,8 +4345,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "වරප්රසාද"
@@ -4345,13 +4358,13 @@ msgstr "නෛත්යක"
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
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] බලන්න"
+"සමහර විට ආසන්න වශයෙන්. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/"
+"a] බලන්න"
#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
@@ -4366,23 +4379,23 @@ msgstr "සේවාදායකය ප්රතිචාර නොදක්
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "තොරතුරු..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "මුරපදය වෙනස් කරන්න"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "මුරපදයක් නැත"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "නැවත ටයිප් කරන්න"
@@ -4406,7 +4419,7 @@ msgid "Create"
msgstr "සාදන්න"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "වරප්රසාද නොමැත"
@@ -4516,12 +4529,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4538,22 +4551,19 @@ msgstr "හැකිළීම:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "කිසිවක් නැත"
#: libraries/display_export.lib.php:313
-#| msgid "\"zipped\""
msgid "zipped"
msgstr "zip කරන ලද"
#: libraries/display_export.lib.php:315
-#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "gzipp කරන ලද"
#: libraries/display_export.lib.php:317
-#| msgid "\"bzipped\""
msgid "bzipped"
msgstr "bzipp කරන ලද"
@@ -4628,8 +4638,7 @@ msgid ""
"A compressed file's name must end in .[format].[compression]. "
"Example: .sql.zip"
msgstr ""
-"හැකිළූ ගොනුවක නම .[ආකෘතිය].[හැකිළීම] ලෙස අවසන් විය යුතුයි. උදා: "
-".sql.zip"
+"හැකිළූ ගොනුවක නම .[ආකෘතිය].[හැකිළීම] ලෙස අවසන් විය යුතුයි. උදා: .sql.zip"
#: libraries/display_import.lib.php:178
msgid "File uploads are not allowed on this server."
@@ -4720,7 +4729,7 @@ msgstr "යතුර අනුව තෝරන්න"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "විකල්ප"
@@ -4760,62 +4769,62 @@ msgstr ""
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "පිටපත් කරන්න"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "පෙළ ඉවත් කරන ලදි"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "පේළි පෙන්වමින්"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "මුළු එකතුව"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "වෙනස් කරන්න"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "විමසුම් ප්රථිඵල සඳහා මෙහෙයුම්"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "මුද්රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "ප්රස්තාරගත කරන්න"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "දසුනක් සාදන්න"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Link not found"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "අනුවාදය පිළිබඳ තොරතුරු"
@@ -5219,8 +5228,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5261,7 +5270,6 @@ msgid "Remove carriage return/line feed characters within columns"
msgstr ""
#: libraries/export/excel.php:32
-#| msgid "Excel edition"
msgid "Excel edition:"
msgstr "එක්සෙල් සංස්කරණය:"
@@ -5331,9 +5339,9 @@ msgstr "Available MIME types"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "දායකයා"
@@ -5344,7 +5352,7 @@ msgid "Generation Time"
msgstr "උත්පාදන වේලාව"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "සේවාදායකයේ අනුවාදය"
@@ -5366,7 +5374,6 @@ msgid "(Generates a report containing the data of a single table)"
msgstr "(Generates a report containing the data of a single table)"
#: libraries/export/pdf.php:24
-#| msgid "Report title"
msgid "Report title:"
msgstr "වාර්තා මාතෘකාව:"
@@ -5400,7 +5407,6 @@ msgstr ""
#: libraries/export/sql.php:72 libraries/export/sql.php:105
#: libraries/export/sql.php:107
#, php-format
-#| msgid "Statements"
msgid "Add %s statement"
msgstr "%s ප්රකාශය එක්කරන්න"
@@ -5524,7 +5530,6 @@ msgid "Object creation options (all are recommended)"
msgstr ""
#: libraries/export/xml.php:40
-#| msgid "View"
msgid "Views"
msgstr "දසුන්"
@@ -5594,8 +5599,8 @@ msgid ""
"The first line of the file contains the table column names (if this is "
"unchecked, the first line will become part of the data)"
msgstr ""
-"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය "
-"දත්ත සේ ගැනේ)"
+"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ ගැනේ)"
+""
#: libraries/import/csv.php:39
msgid ""
@@ -5685,7 +5690,32 @@ msgstr "කිසිවක් නැත"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "සිකු"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "ඉදිරිපත් කරන්න"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "සුචිය එක් කරන්න"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "වෙනස්කම් නැත"
@@ -5988,8 +6018,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "භාවිත නාමය"
@@ -6012,7 +6042,7 @@ msgstr "විචල්යය"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "අගය"
@@ -6030,34 +6060,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "ඕනෑම භාවිතා කරන්නෙක්"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Use text field"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "ඕනෑම දායකයෙක්"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "ස්වදේශී"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "this host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "දායක වගුව භාවිතා කරන්න"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6073,7 +6103,6 @@ msgstr "මුරපදය උත්පාදනය කරන්න"
#: libraries/schema/Svg_Relation_Schema.class.php:369
#: libraries/schema/Visio_Relation_Schema.class.php:213
#, php-format
-#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "%s නමින් වගුවක් නොපවතියි!"
@@ -6121,7 +6150,7 @@ msgstr "ගුණාංග"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "අතිරේක"
@@ -6220,12 +6249,12 @@ msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "%1$s නොදන්නා භාෂාවකි."
@@ -6300,7 +6329,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "දින දර්ශනය"
@@ -6335,10 +6364,6 @@ msgstr "පරිසීමකය"
msgid " Show this query here again "
msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "ඉදිරිපත් කරන්න"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "දර්ශනය කිරීම පමණි"
@@ -6347,7 +6372,7 @@ msgstr "දර්ශනය කිරීම පමණි"
msgid "Location of the text file"
msgstr "පාඨ ගොනුවෙහි පිහිටුම"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය"
@@ -6397,19 +6422,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "නොවසන ලද උද්ධරනය"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "වලංගු නොවන හඳුන්වනය"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "නොදන්නා විරාම අකුරු වැල"
@@ -6463,7 +6488,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "සූචිය"
@@ -6512,12 +6537,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "ප්රාථමික"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "සම්පූර්ණ පාඨය"
@@ -6531,7 +6556,7 @@ msgstr ""
"author what %s does."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "ගබඩා යන්ත්ර"
@@ -6539,12 +6564,12 @@ msgstr "ගබඩා යන්ත්ර"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "%s ක්ෂේත්ර(ය) එක් කරන්න"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්රයක්වත් එක් කල යුතුයි."
@@ -6727,7 +6752,6 @@ msgid ""
msgstr ""
#: libraries/user_preferences.lib.php:142
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "වින්යාස සුරැකීම අසමත් විය"
@@ -6746,88 +6770,87 @@ msgstr "No files found inside ZIP archive!"
msgid "Error in ZIP archive:"
msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "General relation features"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL සම්බන්ධතා collation"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "තවත් සිටුවම්"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "ප්රෝටකෝල අනුවාදය"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "භාවිතා කරන්නා"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL අක්ෂර කට්ටලය"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL සේවාලාභියාගේ අනුවාදය"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP දිගුව"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP තොරතුරු පෙන්වන්න"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "විකි"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "නිල phpMyAdmin මුල් පිටුව"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "දායක වන්න"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "සහාය ලබා ගන්න"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "වෙනස්කම් ලැයිස්තුව"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
"running with this default, is open to intrusion, and you really should fix "
"this security hole by setting a password for user 'root'."
msgstr ""
-"ඔබගේ සිටුවම් ගොනුවේ අඩංගු සිටුවම්, (භාවිත නාමය root වන හා මුරපදයක් නොමැති) "
-"පෙරනිමි MySQL වරප්රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම "
-"අනවසර ඇතුල්වීම් වලට හේතු විය හැකි බැවින් ඔබ 'root' භාවිතා කරන්නා සඳහා වෙනත් "
-"මුරපදයක් ලබා දිය යුතුය."
+"ඔබගේ සිටුවම් ගොනුවේ අඩංගු සිටුවම්, (භාවිත නාමය root වන හා මුරපදයක් නොමැති) පෙරනිමි MySQL "
+"වරප්රසාදැති ගිණුමට අදාළ වේ. මෙම පෙරනිමි අගයන් භාවිත කිරීම අනවසර ඇතුල්වීම් වලට හේතු විය හැකි "
+"බැවින් ඔබ 'root' භාවිතා කරන්නා සඳහා වෙනත් මුරපදයක් ලබා දිය යුතුය."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6837,7 +6860,7 @@ msgstr ""
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6847,7 +6870,7 @@ msgstr ""
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6855,54 +6878,50 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"The configuration file now needs a secret passphrase (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, php-format
-#| msgid ""
-#| "The additional features for working with linked tables have been "
-#| "deactivated. 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."
msgstr ""
-"phpMyAdmin හි configuration storage සම්පූර්ණයෙන් සකසා නැති බැවින් යම් "
-"විස්තෘත විශේෂාංග අක්රිය වී ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් කරන්න."
+"phpMyAdmin හි configuration storage සම්පූර්ණයෙන් සකසා නැති බැවින් යම් විස්තෘත විශේෂාංග "
+"අක්රිය වී ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් කරන්න."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-"ඔබගේ බවුසරයේ Javascript සහය නැත/අක්රිය කර ඇත. එබැවින් යම් phpMyAdmin "
-"විශේෂාංග අක්රිය වී ඇත. උදාහරණයක් ලෙස යාත්රණ රාමුව ස්වයංක්රියව යාවත්කාලීන "
-"නොවේ."
+"ඔබගේ බවුසරයේ Javascript සහය නැත/අක්රිය කර ඇත. එබැවින් යම් phpMyAdmin විශේෂාංග අක්රිය "
+"වී ඇත. උදාහරණයක් ලෙස යාත්රණ රාමුව ස්වයංක්රියව යාවත්කාලීන නොවේ."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6924,13 +6943,13 @@ msgstr "ක්ෂේත්ර"
msgid "filter tables by name"
msgstr "වගුවේ නම"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "නව පිටුවක් සාදන්න"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්න"
@@ -6984,7 +7003,6 @@ msgid "Import/Export coordinates for PDF schema"
msgstr ""
#: pmd_general.php:120
-#| msgid "Submit Query"
msgid "Build Query"
msgstr "විමසුම ගොඩ නඟන්න"
@@ -7035,12 +7053,10 @@ msgid "Rename to"
msgstr "වගුව බවට නම වෙනස් කරන්න"
#: pmd_general.php:482 pmd_general.php:581
-#| msgid "User name"
msgid "New name"
msgstr "නව නාමය"
#: pmd_general.php:485 pmd_general.php:700
-#| msgid "Create"
msgid "Aggregate"
msgstr "එකතු කරන්න"
@@ -7051,7 +7067,6 @@ msgid "Operator"
msgstr "මෙහෙයවනය"
#: pmd_general.php:810
-#| msgid "Table options"
msgid "Active options"
msgstr "සක්රිය විකල්ප"
@@ -7075,27 +7090,22 @@ msgid "Page creation failed"
msgstr "පිටුව සෑදීම අසමත් විය"
#: pmd_pdf.php:89
-#| msgid "pages"
msgid "Page"
msgstr "පිටුව"
#: pmd_pdf.php:99
-#| msgid "Import files"
msgid "Import from selected page"
msgstr "තෝරාගත් පිටු ආනයනය කරන්න"
#: pmd_pdf.php:100
-#| msgid "No rows selected"
msgid "Export to selected page"
msgstr "තෝරාගත් පිටු අපනයනය කරන්න"
#: pmd_pdf.php:102
-#| msgid "Create a new index"
msgid "Create a page and export to it"
msgstr "පිටුවක් සාදා අපනයනය කරන්න"
#: pmd_pdf.php:111
-#| msgid "User name"
msgid "New page name: "
msgstr "නව පිටු නාමය: "
@@ -7141,7 +7151,6 @@ msgid "Cannot save settings, submitted form contains errors"
msgstr ""
#: prefs_manage.php:80
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not import configuration"
msgstr "වින්යාස ආනයනය අසමත් විය"
@@ -7220,7 +7229,6 @@ msgid "%s table not found or not set in %s"
msgstr "%s table not found or not set in %s"
#: schema_export.php:45
-#| msgid "The \"%s\" table doesn't exist!"
msgid "File doesn't exist"
msgstr "ගොනුව නොපවතියි"
@@ -7297,8 +7305,8 @@ msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
msgstr ""
-"සටහන: සංඛ්යාලේඛන සක්රීය කිරීම මගින් වෙබ් සේවාදායකය සහ MySQL සේවාදායකය අතර "
-"විශාල දත්ත හුවමාරුවක් ඇති විය හැකිය."
+"සටහන: සංඛ්යාලේඛන සක්රීය කිරීම මගින් වෙබ් සේවාදායකය සහ MySQL සේවාදායකය අතර විශාල දත්ත "
+"හුවමාරුවක් ඇති විය හැකිය."
#: server_engines.php:47
msgid "Storage Engines"
@@ -7313,107 +7321,107 @@ msgid "Includes all privileges except GRANT."
msgstr "Includes all privileges except GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Allows altering the structure of existing tables."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Allows altering and dropping stored routines."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Allows creating new databases and tables."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Allows creating stored routines."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Allows creating new tables."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Allows creating temporary tables."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Allows creating, dropping and renaming user accounts."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Allows creating new views."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Allows deleting data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Allows dropping databases and tables."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Allows dropping tables."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Allows executing stored routines."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Allows importing data from and exporting data into files."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Allows inserting and replacing data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Allows locking tables for the current thread."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7421,58 +7429,58 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Allows viewing processes of all users"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Has no effect in this MySQL version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Needed for the replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Allows reading data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gives access to the complete list of databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Allows performing SHOW CREATE VIEW queries."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Allows shutting down the server."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7483,13 +7491,13 @@ msgstr ""
"killing threads of other users."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Allows creating and dropping indexes."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Allows changing data."
@@ -7498,240 +7506,232 @@ msgid "No privileges."
msgstr "වරප්රසාද නොමැත."
#: server_privileges.php:311 server_privileges.php:312
-#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "කිසිවක් නැත"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "වගු-විශේෂී වරප්රසාද"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "සටහන: MySQL වරප්රසාද නම් සඳහන් වනුයේ ඉංග්රීසියෙනි"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "ගෝලීය වරප්රසාද"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "දත්තගබඩා විශේෂිත වරප්රසාද"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "පරිපාලනය"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "ගෝලීය වරප්රසාද"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "දත්තගබඩා විශේෂිත වරප්රසාද"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "සම්පත් සීමා"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැබේ."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "ලොගින තොරතුරු"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "මුරපදය වෙනස් නොකරන්න"
-#: server_privileges.php:846 server_privileges.php:2312
-#| msgid "No user(s) found."
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "භාවිතා කරන්නන් හමු නොවිණි."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "ඔබ %s සඳහා වරප්රසාද අලුත් කර ඇත."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "ඔබ %s සඳහා වරප්රසාද අහෝසි කර ඇත."
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s ඉවත් කරමින් පවතී"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "වරප්රසාද පූරණය කෙරෙමින්"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "සාර්ථකව වරප්රසාද පූරණය කරන්න ලදි."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "වරප්රසාද සංස්කරණය කරන්න"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "අහෝසි කරන්න"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "ඕනෑම"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "භාවිත කරන්නන් පිළිබඳ දළ විශ්ලේෂණය"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "ප්රදානය කරන්න"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "නව භාවිතා කරන්නේක් එක් කරන්න"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
-msgstr ""
-"භාවිත කරන්නන්ගෙන් සියලුම සක්රීය වරප්රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් "
-"කරන්න."
+msgstr "භාවිත කරන්නන්ගෙන් සියලුම සක්රීය වරප්රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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 කල යුතුය."
+"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්රසාද ලබාගනුයේ MySQL හි වරප්රසාද වගුවෙනි. "
+"සේවාදායකයේ වරප්රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්රසාද වලට "
+"වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්රසාද පූරණය%s කල යුතුය."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "තෝරාගත් භාවිත කරන්නා වරප්රසාද වගුවේ හමු නොවිණි."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "තීර-විශේෂී වරප්රසාද"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "පහත දත්තගබඩාවට වරප්රසාද එක් කරන්න"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "පහත වගුවට වරප්රසාද එක් කරන්න"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "සහ එකම වරප්රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... පැරණි එක තබා ගන්න."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
-msgstr ""
-" ... පැරැන්නෙන් සියලුම සක්රීය වරප්රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න."
+msgstr " ... පැරැන්නෙන් සියලුම සක්රීය වරප්රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
-msgstr ""
-" ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්රසාද නැවත අලුත් කරන්න."
+msgstr " ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්රසාද නැවත අලුත් කරන්න."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව"
-#: server_privileges.php:2144
-#| msgid "None"
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "කිසිවක් නැත"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්රසාද එයට දෙන්න"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්රසාද දෙන්න (භාවිත නාමය\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" දත්තගබඩාව සඳහා සියලු වරප්රසාද ප්රදානය කරන්න."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" වෙත ප්රවේශ වරප්රසාද ඇති භාවිතා කරන්නන්"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "ගෝලීය"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "දත්තගබඩා විශේෂිත"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "wildcard"
@@ -7792,8 +7792,8 @@ msgid ""
"This server is not configured as master in a replication process. Would you "
"like to configure it?"
msgstr ""
-"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක master ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද?"
+"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක master ලෙස සකසා නැත. එසේ සකස් "
+"කිරීමට ඔබ කැමතිද?"
#: server_replication.php:215
msgid "Master configuration"
@@ -7825,8 +7825,8 @@ msgid ""
"Now, add the following lines at the end of [mysqld] section in your my.cnf "
"and please restart the MySQL server afterwards."
msgstr ""
-"දැන් පහත දැක්වෙන පේළි ඔබගේ my.cnf හි [mysqld] කොටසේ අවසානයට එක්කර අනතුරුව "
-"සේවාදායකය නැවත පණගන්වන්න."
+"දැන් පහත දැක්වෙන පේළි ඔබගේ my.cnf හි [mysqld] කොටසේ අවසානයට එක්කර අනතුරුව සේවාදායකය "
+"නැවත පණගන්වන්න."
#: server_replication.php:228
msgid ""
@@ -7834,8 +7834,8 @@ msgid ""
"should see a message informing you, that this server is configured as "
"master"
msgstr ""
-"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම "
-"සේවාදායකය master ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත"
+"සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම සේවාදායකය master "
+"ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත"
#: server_replication.php:291
msgid "Slave SQL Thread not running!"
@@ -7875,7 +7875,6 @@ msgid "Reset slave"
msgstr "slave ප්රත්යාරම්භ කරන්න"
#: server_replication.php:326
-#| msgid "Structure only"
msgid "Start SQL Thread only"
msgstr "SQL ත්රෙඩය පමණක් අරඹන්න"
@@ -7884,7 +7883,6 @@ msgid "Stop SQL Thread only"
msgstr "SQL ත්රෙඩය පමණක් නවත්තන්න"
#: server_replication.php:331
-#| msgid "Structure only"
msgid "Start IO Thread only"
msgstr "IO ත්රෙඩය පමණක් අරඹන්න"
@@ -7918,8 +7916,8 @@ msgid ""
"This server is not configured as slave in a replication process. Would you "
"like to configure it?"
msgstr ""
-"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද?"
+"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් "
+"කිරීමට ඔබ කැමතිද?"
#: server_status.php:46
msgid ""
@@ -8624,7 +8622,6 @@ msgid "Show processes"
msgstr "ක්රියාවලිය පෙන්වන්න"
#: server_status.php:470
-#| msgid "Reset"
msgctxt "for Show status"
msgid "Reset"
msgstr "ප්රතිසකසන්න"
@@ -8639,36 +8636,32 @@ msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-"මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master හා "
-"slave ලෙස ක්රියාකරයි."
+"මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master හා slave "
+"ලෙස ක්රියාකරයි."
#: server_status.php:488
msgid "This MySQL server works as master in replication process."
-msgstr ""
-"මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master ලෙස "
-"ක්රියාකරයි."
+msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master ලෙස ක්රියාකරයි."
#: server_status.php:490
msgid "This MySQL server works as slave in replication process."
-msgstr ""
-"මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී slave ලෙස "
-"ක්රියාකරයි."
+msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී slave ලෙස ක්රියාකරයි."
#: server_status.php:492
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න"
+"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ "
+"අංශය වෙත යන්න"
#: server_status.php:509
msgid ""
"Server traffic: These tables show the network traffic statistics of "
"this MySQL server since its startup."
msgstr ""
-"සේවාදායකය සමඟ දත්ත හුවමාරු: මෙම වගු MySQL සේවාදායකය පණගැන්වීමේ සිට "
-"එහි දත්ත හුවමාරු පිළිබඳ සංඛ්යාලේඛන පෙන්වයි."
+"සේවාදායකය සමඟ දත්ත හුවමාරු: මෙම වගු MySQL සේවාදායකය පණගැන්වීමේ සිට එහි දත්ත "
+"හුවමාරු පිළිබඳ සංඛ්යාලේඛන පෙන්වයි."
#: server_status.php:514
msgid "Traffic"
@@ -8716,8 +8709,7 @@ msgstr "අත්හැර දමන ලදි"
msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
-msgstr ""
-"විමසුම් සංඛ්යාලේඛන: ආරම්භයේ සිට විමසුම් %sක් සේවාදායකය වෙත යවා ඇත."
+msgstr "විමසුම් සංඛ්යාලේඛන: ආරම්භයේ සිට විමසුම් %sක් සේවාදායකය වෙත යවා ඇත."
#: server_status.php:626
msgid "per minute"
@@ -8834,7 +8826,6 @@ msgid "Enter manually"
msgstr ""
#: server_synchronize.php:1138
-#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "වත්මන් සම්බන්දතාව"
@@ -8852,8 +8843,8 @@ msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
msgstr ""
-"ඉලක්ක දත්තගබඩාව මූලාශ්ර දත්තගබඩාව සමඟ සම්පූර්ණයෙන් සමමුහුර්ත වෙයි. මූලාශ්ර "
-"දත්තගබඩාව නොවෙනස්ව පවතියි."
+"ඉලක්ක දත්තගබඩාව මූලාශ්ර දත්තගබඩාව සමඟ සම්පූර්ණයෙන් සමමුහුර්ත වෙයි. මූලාශ්ර දත්තගබඩාව නොවෙනස්ව "
+"පවතියි."
#: server_variables.php:39
msgid "Server variables and settings"
@@ -8867,7 +8858,7 @@ msgstr "සැසි අගය"
msgid "Global value"
msgstr "ගෝලීය අගය"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "බාගත කරන්න"
@@ -8887,8 +8878,8 @@ msgid ""
"You are not using a secure connection; all data (including potentially "
"sensitive information, like passwords) is transferred unencrypted!"
msgstr ""
-"ඔබ ආරක්ෂිත සම්බන්ධතාවක් භාවිතා නොකරයි. සියලුම දත්ත (මුරපද ආදී සංවේදී "
-"තොරතුරු ඇතුළුව) අනාරක්ෂිතව හුවමාරු වෙයි!"
+"ඔබ ආරක්ෂිත සම්බන්ධතාවක් භාවිතා නොකරයි. සියලුම දත්ත (මුරපද ආදී සංවේදී තොරතුරු ඇතුළුව) අනාරක්ෂිතව "
+"හුවමාරු වෙයි!"
#: setup/frames/index.inc.php:60
#, php-format
@@ -8896,62 +8887,74 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
-"ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්ෂිත "
-"සම්බන්දතාවන් භාවිත කිරීමට [a@%s]මෙම[/a] සබැඳුම වෙත යන්න."
+"ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්ෂිත සම්බන්දතාවන් භාවිත කිරීමට "
+"[a@%s]මෙම[/a] සබැඳුම වෙත යන්න."
#: setup/frames/index.inc.php:64
msgid "Insecure connection"
msgstr "අනාරක්ෂිත සම්බන්දතාවය"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "වින්යාස ගබඩාව"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "දළ විශ්ලේෂණය"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "සැඟවුණු පණිවිඩ පෙන්වන්න (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "සකස් කෙරුණු සේවාදායක කිසිවක් නොමැත"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "නව සේවාදායකය"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "පෙරනිමි භාෂාව"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "භාවිත කරන්නාට තෝරා ගෙනීමට ඉඩ දෙන්න"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- කිසිවක් නොමැත -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "පෙරනිමි සේවාදායකය"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "පේළියේ අවසානය"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "පෙන්වන්න"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "පූරණය කරන්න"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin මුල් පිටුව"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "පරිත්යාග කරන්න"
@@ -8993,8 +8996,8 @@ msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-"අනුවාදය කියවීමට අසමත් විය. ඔබ offline වීම හෝ උත්ශ්රේණි (upgrade) සේවාදායකය "
-"ප්රතිචාර නොදැක්වීම හෝ නිසා විය හැකිය."
+"අනුවාදය කියවීමට අසමත් විය. ඔබ offline වීම හෝ උත්ශ්රේණි (upgrade) සේවාදායකය ප්රතිචාර "
+"නොදැක්වීම හෝ නිසා විය හැකිය."
#: setup/lib/index.lib.php:143
msgid "Got invalid version string from server"
@@ -9010,8 +9013,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-"ඔබ Git අනුවාදය භාවිතා කරයි. [kbd]git pull[/kbd] විධානය භාවිතා කරන්න :-)[br] "
-"නවතම ස්ථායී අනුවාදය %s, %s දින නිකුත් කෙරුණු."
+"ඔබ Git අනුවාදය භාවිතා කරයි. [kbd]git pull[/kbd] විධානය භාවිතා කරන්න :-)[br] නවතම "
+"ස්ථායී අනුවාදය %s, %s දින නිකුත් කෙරුණු."
#: setup/lib/index.lib.php:165
msgid "No newer stable version is available"
@@ -9098,10 +9101,10 @@ msgid ""
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
-"ඔබ [kbd]config[/kbd] සත්යාපනය තෝරා ස්වයංක්රීය ඇතුල්වීම සඳහා භාවිත නාමය සහ "
-"මුරපදය සඳහන් කර ඇත. සජීවී සත්කාරකයන් සඳහා මෙය නුසුදුසුය. ඔබගේ phpMyAdmin "
-"URLය දන්නා ඕනෑම අයෙකුට ඔබගේ phpMyAdmin පැනලය භාවිත කල හැකිය. %sසත්යාපනය%s "
-"ලෙස [kbd]config[/kbd] හෝ [kbd]http[/kbd] තෝරන්න."
+"ඔබ [kbd]config[/kbd] සත්යාපනය තෝරා ස්වයංක්රීය ඇතුල්වීම සඳහා භාවිත නාමය සහ මුරපදය සඳහන් "
+"කර ඇත. සජීවී සත්කාරකයන් සඳහා මෙය නුසුදුසුය. ඔබගේ phpMyAdmin URLය දන්නා ඕනෑම අයෙකුට "
+"ඔබගේ phpMyAdmin පැනලය භාවිත කල හැකිය. %sසත්යාපනය%s ලෙස [kbd]config[/kbd] හෝ "
+"[kbd]http[/kbd] තෝරන්න."
#: setup/lib/index.lib.php:270
#, php-format
@@ -9182,62 +9185,61 @@ msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලද
msgid "Function"
msgstr "ශ්රිතය"
-#: tbl_change.php:755
-#| msgid " Because of its length,
this field might not be editable "
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " මෙහි දිග නිසා,
මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "ද්වීමය - සංස්කරණය නොකරන්න"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "අනතුරුව"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "පෙර පිටුවට ආපසු යන්න"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "නව පේළියක් එක් කරන්න"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "මෙම පිටුව වෙත ආපසු යන්න"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "මීලඟ පේළිය එක් කරන්න"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න"
@@ -9251,8 +9253,8 @@ msgid ""
"The result of this query can't be used for a chart. See [a@./Documentation."
"html#faq6_29@Documentation]FAQ 6.29[/a]"
msgstr ""
-"මෙම විමසුම් ප්රතිඑලය ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. "
-"[a@./Documentation.html#faq6_29@Documentation]FAQ 6.29[/a] බලන්න"
+"මෙම විමසුම් ප්රතිඑලය ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. [a@./Documentation."
+"html#faq6_29@Documentation]FAQ 6.29[/a] බලන්න"
#: tbl_chart.php:90
msgid "Width"
@@ -9319,8 +9321,8 @@ msgid ""
"For compatibility reasons the chart image is segmented by default, select "
"this to draw the whole chart in one image."
msgstr ""
-"අනුකූලතාව පවත්වාගැනීම සඳහා ප්රස්ථාරය තීරු වලට බෙදා ඇත. ප්රස්ථාරය තනි "
-"රූපයක් ලෙස නිර්මාණය කිරීමට මෙය තෝරන්න."
+"අනුකූලතාව පවත්වාගැනීම සඳහා ප්රස්ථාරය තීරු වලට බෙදා ඇත. ප්රස්ථාරය තනි රූපයක් ලෙස නිර්මාණය "
+"කිරීමට මෙය තෝරන්න."
#: tbl_chart.php:166
msgid ""
@@ -9332,9 +9334,8 @@ msgid ""
"Note that not every result table can be put to the chart. See FAQ 6.29"
msgstr ""
-"සෑම ප්රතිඑලයක්ම ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. FAQ 6.29 "
-"බලන්න"
+"සෑම ප්රතිඑලයක්ම ප්රස්තාරයක් ඇඳීමට භාවිතා කල නොහැක. FAQ 6.29 බලන්න"
#: tbl_chart.php:181
msgid "Redraw"
@@ -9385,15 +9386,14 @@ msgstr "සූචි වර්ගය:"
#: tbl_indexes.php:182
msgid ""
"(\"PRIMARY\" must be the name of and only of a primary key!)"
-msgstr ""
-"(\"PRIMARY\" නාමය ප්රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)"
+msgstr "(\"PRIMARY\" නාමය ප්රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)"
#: tbl_indexes.php:249
#, php-format
msgid "Add to index %s column(s)"
msgstr " %s තීර(ය) සූචියට එක් කරන්න"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
@@ -9419,99 +9419,99 @@ msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි."
msgid "The table name is empty!"
msgstr "වගුවෙහි නම හිස්ව ඇත!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "වගු අනුපිළිවෙල වෙනස් කරන්න"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(singly)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට ගෙන යන්න:"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "වගු විකල්ප"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "වගුව බවට නම වෙනස් කරන්න"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න:"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "පිටපත් කල වගුව වෙත මාරු වන්න"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "වගු නඩත්තුව"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragment table"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Table %s has been flushed"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Flush the table (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "වගුව හෝ දත්ත ඉවත් කරන්න"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "වගුව හිස් කරන්න (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "වගුව ඉවත් කරන්න (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "කොටස් නඩත්තුව"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "%s කොටස"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "විශ්ලේෂණය"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "පරීක්ෂාව"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "ප්රශස්තනය"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "නැවත සෑදීම"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "ප්රතිසංස්කරණය"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "කොටස් කිරීම ඉවත් කරන්න"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Check referential integrity:"
@@ -9519,39 +9519,39 @@ msgstr "Check referential integrity:"
msgid "Show tables"
msgstr "වගු පෙන්වන්න"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "අවකාශ භාවිතය"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "භාවිතය"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "එලදායී"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "පේළි සංඛ්ය ලේඛන"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "ප්රකාශය"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "ස්ථිතික"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "ගතික"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "පේළියේ දිග"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " පේළියේ ප්රමාණය "
@@ -9628,52 +9628,52 @@ msgstr "කිසිවක් නැත"
msgid "Column %s has been dropped"
msgstr "%s තීරුව හලන ලදි"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "%s ට ප්රාථමික මූලයක් එක් කරන ලදි"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "%s සඳහා සූචියක් එක්කරන ලදි"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "තවත් ක්රියාවන් පෙන්වන්න"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relation view"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "සැකිල්ලක් යෝජනා කරන්න"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "තීරයක් එක් කරන්න"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "වගුව අවසනදී"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "වගුව මුලදී"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s ට පසු"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "පේළි %s මත සුචියක් සාදන්න"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "කොටස් කරන ලද"
@@ -9701,107 +9701,133 @@ msgstr "%s.%s හි %s වන අනුවාදය සඳහා අවධා
msgid "SQL statements executed."
msgstr "SQL ය ක්රියාත්මක කරන ලදි."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "විමසුම් වර්ගය"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "%s පෙන්වන්න, %s දින සිට %s දින දක්වා %s %s භාවිතා කරන්නා විසින්"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "දත්තගබඩා නොමැත"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "දිනය"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "දත්ත අර්ථ දැක්වීම"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්රතිස්ථාපනය කෙරෙනු ඇත."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL ක්රියාත්මක කිරීම"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "අපනයන කරන්න %s ලෙස"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "අනුවාද පෙන්වන්න"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "අනුවාදය"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "%s.%s සඳහා අවධානය අක්රීය කරන්න"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "අක්රීය කරන්න"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "%s.%s සඳහා අවධානය සක්රීය කරන්න"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "සක්රීය කරන්න"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "%s වන අනුවාදය සාදන්න, %s.%s හි"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "අනුවාදය සාදන්න"
diff --git a/po/sk.po b/po/sk.po
index 7bfcf2baf9..ea1cf64c9a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2010-07-22 02:26+0200\n"
-"Last-Translator: Marc Delisle \n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
+"PO-Revision-Date: 2011-05-11 11:55+0200\n"
+"Last-Translator: \n"
"Language-Team: slovak \n"
-"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Zobraziť všetko"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Hľadať"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Hľadať"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Vykonaj"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Kľúčový názov"
@@ -96,39 +96,39 @@ msgstr "Použiť túto hodnotu"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Nie je nastavený žiadny streamovacie server!"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
-msgstr ""
+msgstr "Chyba pri čítaní hlavičiek"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "Nepodarilo sa otvoriť vzdialene URL"
#: changelog.php:32 license.php:28
#, php-format
msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
-msgstr ""
+msgstr "Súbor %s nebol nájdený, viac informácií nájdete na www.phpmyadmin.net."
#: db_create.php:58
#, php-format
msgid "Database %1$s has been created."
msgstr "Databáza %1$s bola vytvorená."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentár k databáze: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentár k tabuľke"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,11 +136,9 @@ msgstr "Komentár k tabuľke"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
-#, fuzzy
-#| msgid "Column names"
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
-msgstr "Názvy stĺpcov"
+msgstr "Stĺpce"
#: db_datadict.php:168 db_printview.php:104 libraries/Index.class.php:442
#: libraries/db_events.inc.php:25 libraries/db_routines.inc.php:36
@@ -149,11 +147,11 @@ msgstr "Názvy stĺpcov"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -163,8 +161,8 @@ msgstr "Typ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Nulový"
@@ -174,7 +172,7 @@ msgstr "Nulový"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Predvolené"
@@ -197,39 +195,40 @@ msgstr "Linkovať na"
msgid "Comments"
msgstr "Komentáre"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nie"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Áno"
@@ -241,8 +240,8 @@ msgstr "Vytlačiť"
msgid "View dump (schema) of database"
msgstr "Zobraziť dump (schému) databázy"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Neboli nájdené žiadne tabuľky v tejto datábaze."
@@ -268,82 +267,82 @@ msgstr "Databáza %s bola premenovaná na %s"
msgid "Database %s has been copied to %s"
msgstr "Databáza %s bola skopírovaná na %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Premenovať databázu na"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Príkaz"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Premenovať databázu na"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databáza %s bola zmazaná."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
msgstr "Prejsť do databázy"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Skopírovať databázu na"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Iba štruktúru"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Štruktúru a dáta"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Iba dáta"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Pridať %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Pridať hodnotu AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Pridať obmedzenia"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Prepnúť na skopírovanú databázu"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Zotriedenie"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -355,7 +354,7 @@ msgstr ""
"Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak "
"chcete zistiť prečo, kliknite %ssem%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -365,17 +364,17 @@ msgstr "Relačná schéma"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabuľka"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Riadkov"
@@ -391,21 +390,21 @@ msgstr "práve sa používa"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Vytvorenie"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Posledná zmena"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Posledná kontrola"
@@ -418,101 +417,94 @@ msgstr[0] "%s tabuľka(y)"
msgstr[1] "%s tabuľka(y)"
msgstr[2] "%s tabuľka(y)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL dopyt bol úspešne vykonaný"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
-msgstr ""
+msgstr "Prepnúť na"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
-msgstr ""
+msgstr "vizuálneho návrhára"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Triediť"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Vzostupne"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Zostupne"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Ukázať"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kritéria"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Vložiť"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "a"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Zmazať"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "alebo"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Zmeniť"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Pridať/Odobrať kritéria riadku"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Pridať/Odobrať polia stĺpcov"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Aktualizovať dopyt"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Použiť tabuľky"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr " SQL dopyt v databáze %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Odošli dopyt"
@@ -555,7 +547,7 @@ msgstr[2] "%s výskyt(ov)v tabuľke %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Prechádzať"
@@ -565,14 +557,15 @@ msgstr "Prechádzať"
msgid "Delete the matches for the %s table?"
msgstr "Sťahujem dáta pre tabuľku"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Zmazať"
@@ -618,35 +611,36 @@ msgstr "V tabuľke(ách):"
msgid "No tables found in database"
msgstr "Neboli nájdené žiadne tabuľky v tejto datábaze."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabuľka %s bola vyprázdená"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Pohľad %s bol odstránený"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabuľka %s bola odstránená"
#: db_structure.php:293 tbl_create.php:295
msgid "Tracking is active."
-msgstr ""
+msgstr "Sledovanie je aktívne."
#: db_structure.php:295 tbl_create.php:297
msgid "Tracking is not active."
-msgstr ""
+msgstr "Sledovanie nie je aktívne."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
+"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
#: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73
@@ -669,22 +663,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "Na tomto MySQL servri je prednastaveným úložným systémom %s."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Výber:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Označiť všetko"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Odznačiť všetko"
@@ -693,16 +687,16 @@ msgid "Check tables having overhead"
msgstr "Zvoliť neoptimálne"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportovať"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Náhľad k tlači"
@@ -714,34 +708,52 @@ msgstr "Vyprázdniť"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Odstrániť"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Skontrolovať tabuľku"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimalizovať tabuľku"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Opraviť tabuľku"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analyzovať tabuľku"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Prejsť do tabuľky"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Nahradiť dáta v tabuľke súborom"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Nahradiť dáta v tabuľke súborom"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Dátový slovník"
#: db_tracking.php:79
msgid "Tracked tables"
-msgstr ""
+msgstr "Sledované tabuľky"
#: db_tracking.php:84 libraries/config/messages.inc.php:481
#: libraries/export/htmlword.php:89 libraries/export/latex.php:162
@@ -749,74 +761,71 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Databáza"
#: db_tracking.php:86
msgid "Last version"
-msgstr ""
+msgstr "Posledná verzia"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Vytvoriť"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
-msgstr ""
+msgstr "Aktualizované"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Stav"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Akcia"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
-msgstr ""
+msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
-msgstr ""
+msgstr "zapnuté"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
-msgstr ""
+msgstr "nie je zapnuté"
#: db_tracking.php:134
-#, fuzzy
msgid "Versions"
-msgstr "Perština"
+msgstr "Verzia"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
-msgstr ""
+msgstr "Informácie o monitorovanie"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
-#, fuzzy
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
-msgstr "Iba štruktúru"
+msgstr "Snímok štruktúry"
#: db_tracking.php:181
msgid "Untracked tables"
-msgstr ""
+msgstr "Nesledované tabuľky"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
-#, fuzzy
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
-msgstr "Skontrolovať tabuľku"
+msgstr "Sledovať tabuľku"
#: db_tracking.php:229
#, fuzzy
@@ -826,23 +835,23 @@ msgstr "Databáza"
#: enum_editor.php:21 libraries/tbl_properties.inc.php:793
#, php-format
msgid "Values for the column \"%s\""
-msgstr ""
+msgstr "Hodnoty pre pole \"%s\""
#: enum_editor.php:22 libraries/tbl_properties.inc.php:794
msgid "Enter each value in a separate field."
-msgstr ""
+msgstr "Zadajte každú hodnotu do samostatného políčka."
#: enum_editor.php:57
msgid "+ Restart insertion and add a new value"
-msgstr ""
+msgstr "+ Začať nové vkladanie a pridať novú hodnotu"
#: enum_editor.php:67
msgid "Output"
-msgstr ""
+msgstr "Výstup"
#: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field"
-msgstr ""
+msgstr "Skopírujte spojené hodnoty do poľa \"Dĺžka/Hodnoty\""
#: export.php:73
msgid "Selected export type has to be saved in file!"
@@ -874,8 +883,8 @@ msgstr "Dump (schéma) bol uložený do súboru %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
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ť."
@@ -946,6 +955,13 @@ msgstr ""
"že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený "
"časový limit behu skriptu v php."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL dopyt bol úspešne vykonaný"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -960,276 +976,280 @@ msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi rámy."
#: server_synchronize.php:738 server_synchronize.php:766
#: server_synchronize.php:794 server_synchronize.php:806
msgid "Click to select"
-msgstr ""
+msgstr "Kliknite pre vybranie"
#: js/messages.php:26
msgid "Click to unselect"
-msgstr ""
+msgstr "Kliknite pre zrušenie vyberu"
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Možnosť \"DROP DATABASE\" vypnutá."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Skutočne chcete vykonať príkaz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte sa ZRUŠIŤ celú databázu!"
#: js/messages.php:32
-msgid "Dropping Event"
-msgstr ""
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Chystáte sa ZRUŠIŤ celú databázu!"
#: js/messages.php:33
#, fuzzy
-#| msgid "Procedures"
-msgid "Dropping Procedure"
-msgstr "Procedúry"
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Chystáte sa ZRUŠIŤ celú databázu!"
+
+#: js/messages.php:34
+msgid "Dropping Event"
+msgstr "Odstraňujem udalosť"
#: js/messages.php:35
-#, fuzzy
-#| msgid "Allows inserting and replacing data."
-msgid "Deleting tracking data"
-msgstr "Povolí vkladanie a nahradzovanie dát."
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
-msgstr ""
+msgid "Dropping Procedure"
+msgstr "Odstraňujem procedúru"
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr "Odstraňujem sledovacie dáta"
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr "Odstraňujem primárny kľúč/index"
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
"Táto operácia môže trvať veľmi dlho. Chcete ju aj napriek tomu vykonať?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
-msgstr ""
+msgstr "Chystáte sa vypnúť skladisko BLOBov!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
-msgstr ""
+msgstr "Chcete vypnúť všetky odkazy do skladiska BLOBov v databáze %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Chýbajúca položka vo formulári !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Toto nie je číslo!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Názov hostiteľa je prázdny!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Meno používateľa je prázdne!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Heslo je prázdne!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Heslá sa nezhodujú!"
-#: js/messages.php:52
-#, fuzzy
-#| msgid "Add a new User"
-msgid "Add a New User"
-msgstr "Pridať nového používateľa"
-
-#: js/messages.php:53
-#, fuzzy
-msgid "Create User"
-msgstr "Vytvoriť relaciu"
-
#: js/messages.php:54
-#, fuzzy
-#| msgid "Reloading the privileges"
-msgid "Reloading Privileges"
-msgstr "Znovunačítanie práv"
+msgid "Add a New User"
+msgstr "Pridať nového uživateľa"
#: js/messages.php:55
-#, fuzzy
-#| msgid "Remove selected users"
+msgid "Create User"
+msgstr "Vytvoriť uživateľa"
+
+#: js/messages.php:56
+msgid "Reloading Privileges"
+msgstr "Načítavam oprávnenia"
+
+#: js/messages.php:57
msgid "Removing Selected Users"
-msgstr "Odstrániť vybraných používateľov"
+msgstr "Odstránenie vybraných používateľov"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
-msgstr ""
+msgstr "Zavrieť"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Zrušiť"
-#: js/messages.php:63
-#, fuzzy
+#: js/messages.php:65
msgid "Loading"
-msgstr "Lokálny"
-
-#: js/messages.php:64
-#, fuzzy
-#| msgid "Processes"
-msgid "Processing Request"
-msgstr "Procesy"
-
-#: js/messages.php:65 libraries/import/ods.php:80
-msgid "Error in Processing Request"
-msgstr ""
+msgstr "Načítanie"
#: js/messages.php:66
+msgid "Processing Request"
+msgstr "Prebieha spracovanie požiadavka"
+
+#: js/messages.php:67 libraries/import/ods.php:80
+msgid "Error in Processing Request"
+msgstr "Chyba pri spracovanie požiadavku"
+
+#: js/messages.php:68
msgid "Dropping Column"
-msgstr ""
+msgstr "Odstraňujem stĺpce"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
-msgstr ""
+msgstr "Pridavam primarny kľúč"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Premenovať databázu na"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Premenovať databázu na"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Skopírovať databázu na"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Znaková sada"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Vytvoriť tabuľku"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Hľadať"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL dopyt"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL dopyt"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Systémy"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Uložiť"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skryť"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL dopyt"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL dopyt"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorovať"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Zvolte, ktoré pole zobraziť"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Vytvoriť Heslo"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Vytvoriť"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Zmeniť heslo"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Po"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1237,123 +1257,129 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Go to database"
+msgid "up to date"
+msgstr "Prejsť do databázy"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Žiadny"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Predchádzajúci"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Ďalší"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Celkom"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binárny"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Máj"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jún"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Júl"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1361,178 +1387,178 @@ msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ne"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Po"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Út"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pi"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ne"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Po"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Út"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "St"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Št"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pi"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Št"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pi"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "práve sa používa"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1583,33 +1609,33 @@ msgid "No index defined!"
msgstr "Nebol definovaný žiadny index!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indexy"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikátny"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Mohutnosť"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Komentár"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upraviť"
@@ -1631,18 +1657,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databázy"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Chyba"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1650,7 +1676,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d riadok/riadkov ovplyvnených."
msgstr[1] "%1$d riadok/riadkov ovplyvnených."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1658,7 +1684,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d riadok/riadkov zmazaných."
msgstr[1] "%1$d riadok/riadkov zmazaných."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1752,8 +1778,8 @@ msgstr "Vitajte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
@@ -1903,19 +1929,19 @@ msgstr "Tabuľky"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Dáta"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Celkom"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Naviac"
@@ -2015,16 +2041,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Chybný názov hostu pre server %1$s. Prosím, skontrolujte konfiguráciu."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu."
@@ -2059,7 +2085,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentácia"
@@ -2210,7 +2236,7 @@ msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Štruktúra"
@@ -2245,7 +2271,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "upload adresár web serveru"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Adresár určený pre upload súborov sa nedá otvoriť"
@@ -2415,7 +2441,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Vynulovať"
@@ -2533,7 +2559,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfiguračný súbor"
@@ -2664,7 +2690,7 @@ msgid "Character set of the file"
msgstr "Znaková sada súboru:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formát"
@@ -2990,7 +3016,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servery"
@@ -3744,7 +3770,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4217,9 +4243,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Heslo"
@@ -4239,8 +4265,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Používateľ:"
@@ -4356,7 +4382,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4508,7 +4534,7 @@ msgstr "Udalosti"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Názov"
@@ -4531,8 +4557,8 @@ msgid "Designer"
msgstr "Dizajnér"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Oprávnenia"
@@ -4544,7 +4570,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4563,23 +4589,23 @@ msgstr "Server neodpovedá"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Zmeniť heslo"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Žiadne heslo"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Potvrdiť"
@@ -4603,7 +4629,7 @@ msgid "Create"
msgstr "Vytvoriť"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Žiadne oprávnenia"
@@ -4735,8 +4761,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
@@ -4759,7 +4785,7 @@ msgstr "Kompresia"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Žiadny"
@@ -4960,7 +4986,7 @@ msgstr "Zoradiť podľa kľúča"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Nastavenia"
@@ -5000,65 +5026,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Transformácia pri prehliadaní"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Riadok bol zmazaný"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Zabiť"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "v dopyte"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Ukázať záznamy "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "celkovo"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Dopyt zabral %01.4f sek."
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Zmeniť"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operácie s výsledkami dopytu"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Náhľad tlače (s kompletnými textami)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Zobraziť schému PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Vytvoriť relaciu"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Linka nebola nájdená"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informácie o verzii"
@@ -5460,8 +5486,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5581,9 +5607,9 @@ msgstr "Dostupné MIME typy"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Hostiteľ"
@@ -5594,7 +5620,7 @@ msgid "Generation Time"
msgstr "Vygenerované:"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Verzia serveru"
@@ -5937,7 +5963,31 @@ msgstr "Žiadny"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Pi"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Odošli"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+msgid "Add prefix"
+msgstr "Odstrániť index/indexy"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Žiadna zmena"
@@ -6244,8 +6294,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Meno používateľa"
@@ -6268,7 +6318,7 @@ msgstr "Premenná"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Hodnota"
@@ -6286,34 +6336,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Pridať replikačného užívateľa pre slave"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Akýkoľvek používateľ"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Požiť textové pole"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Akýkoľvek hostiteľ"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokálny"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Tento počítač"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Použiť tabuľku s hostiteľmi"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6379,7 +6429,7 @@ msgstr "Atribúty"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6482,12 +6532,12 @@ msgid "Toggle scratchboard"
msgstr "zobraziť grafický návrh"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznámy jazyk: %1$s."
@@ -6564,7 +6614,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Kalendár"
@@ -6599,10 +6649,6 @@ msgstr "Oddeľovač"
msgid " Show this query here again "
msgstr " Zobraziť tento dopyt znovu "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Odošli"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Iba prezrieť"
@@ -6611,7 +6657,7 @@ msgstr "Iba prezrieť"
msgid "Location of the text file"
msgstr "Lokácia textového súboru"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "upload adresár web serveru"
@@ -6661,19 +6707,19 @@ msgstr "ZAČIATOK TOKU"
msgid "END RAW"
msgstr "KONIEC TOKU"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Neuzatvorené úvodzovky"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Neplatný identifikátor"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Neznámy interpunkčný reťazec"
@@ -6684,8 +6730,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
-"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
-"%sdocumentation%s."
+"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
+"sdocumentation%s."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6728,7 +6774,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6777,12 +6823,12 @@ msgid "As defined:"
msgstr "Podľa zadania:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primárny"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Celý text"
@@ -6796,7 +6842,7 @@ msgstr ""
"autora, ktorý %s vytára."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Úložný Systém"
@@ -6804,13 +6850,13 @@ msgstr "Úložný Systém"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Pridať stĺpec/stĺpce"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7012,82 +7058,82 @@ msgstr "V ZIP archíve neboli nájdené žiadne súbory!"
msgid "Error in ZIP archive:"
msgstr "Chyba v ZIP archíve:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Možnosti všeobecných vzťahov"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Overenie MySQL spojenia"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "settings"
msgid "More settings"
msgstr "nastavenia"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Verzia protokolu"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Používateľ"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Znaková sada v MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Webový server"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Verzia MySQL klienta"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "rozšírenie PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Zobraziť informácie o PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Oficiálne stránky phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atribúty"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "Exportovať"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Žiadna zmena"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7099,7 +7145,7 @@ msgstr ""
"nastavením, nie je zabezpečený proti napadnutiu, táto bezpečnostná chyba by "
"mala byť urýchlene odstránená."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7108,7 +7154,7 @@ msgstr ""
"V nastavení PHP je aktívna funkcia mbstring.func_overload, ktorá nie je "
"kompatibilná s phpMyAdmin-om a môže spôsobiť stratu dát!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7119,7 +7165,7 @@ msgstr ""
"rozdeľovať reťazce kódované v týchto znakových sadách a môže to viesť k "
"nečakaným výsledkom."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7127,19 +7173,19 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Nastavte prosím kľúč pre šifrovanie cookies v konfiguračnom súbore "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7149,7 +7195,7 @@ msgstr ""
"vašom phpMyAdmin adresári. Mali by ste ho odstrániť, ak je phpMyAdmin "
"nakonfigurovaný."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7161,14 +7207,14 @@ msgstr ""
"Prídavné vlastnosti pre prácu s prepojenými tabuľkami boli deaktivované. Ak "
"chcete zistiť prečo, kliknite %ssem%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7177,7 +7223,7 @@ msgstr ""
"Verzia Vašej PHP MySQL knižnice %s je rozdielna od MySQL server verzie %s. "
"Toto môže spôsobiť nepredvídateľné správanie."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7198,14 +7244,14 @@ msgstr "Filter"
msgid "filter tables by name"
msgstr "meno tabuľky"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Vytvoriť tabuľku"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Prosím vyberte si databázu"
@@ -7601,107 +7647,107 @@ msgid "Includes all privileges except GRANT."
msgstr "Všetky oprávnenia okrem GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Povolí meniť štruktúru existujúcich tabuliek."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Umožňuje upravovať a odstraňovať uložené procedúry."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Povolí vytváranie nových databáz a tabuliek."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Umožňuje vytvárať uložené procedúry."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Povolí vytváranie nových tabuliek."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Povolí vytváranie dočasných tabuliek."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
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:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Umožňuje vytvárať nové pohľady."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Povolí mazanie dát."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Povolí odstraňovanie databáz a tabuliek."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Povolí odstraňovanie tabuliek."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Umožňuje spúšťať uložené procedúry."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Povolí vytváranie a mazanie indexov."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Povolí vkladanie a nahradzovanie dát."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7709,60 +7755,60 @@ msgstr ""
"Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže "
"používateľ odoslať za hodinu."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Obmedzuje počet simultánnych pripojení používateľa."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nefunguje v tejto verzii MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Potrebné pre replikáciu pomocných serverov."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Povolí čítanie dát."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Povolí prístup ku kompletnému zoznamu databáz."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Povolí vypnutie serveru."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7773,13 +7819,13 @@ msgstr ""
"premenných alebo zabíjanie procesov iných používateľov."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Povolí vytváranie a mazanie indexov."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Povolí menenie dát."
@@ -7794,195 +7840,195 @@ msgctxt "None privileges"
msgid "None"
msgstr "Žiadny"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Oprávnenia pre jednotlivé tabuľky"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Poznámka: názvy MySQL oprávnení sú uvádzané v angličtine. "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globálne práva"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Oprávnenia pre jednotlivé databázy"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administrácia"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globálne práva"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Oprávnenia pre jednotlivé databázy"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Obmedzenie zdrojov"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Prihlásenie"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nezmeniť heslo"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nebol nájdený žiadny používateľ."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Používateľ %s už existuje!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Používateľ bol pridaný."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Boli aktualizované oprávnenia pre %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Boli zrušené oprávnenia pre %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Heslo pre %s bolo úspešne zmenené."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Odstraňuje sa %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Na odstránenie neboli vybraní žiadni používatelia!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Znovunačítanie práv"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Vybraní používatelia bol úspešne odstránený."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Práva boli úspešne znovunačítané."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Upraviť oprávnenia"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Zrušiť"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Akýkoľvek"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Prehľad používatelov"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Prideliť"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Pridať nového používateľa"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Odstrániť vybraných používateľov"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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ť."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Oprávnenia pre jednotlivé stĺpce"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Pridať oprávnenia pre nasledujúcu databázu"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Pridať oprávnenia pre nasledujúcu tabuľku"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Vytvoriť používateľa s rovnakými právami a..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... zachovať pôvodného používateľa."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
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:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7990,44 +8036,44 @@ msgstr ""
" ... zmazať pôvodného používateľa z tabuliek používateľov a potom "
"znovunačítať oprávnenia."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Databáza pre používateľa"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Žiadny"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Prideliť všetky oprávnenia na databázu "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Používatelia majúci prístup k "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globálny"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "závislé na databáze"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "nahradzujúci znak"
@@ -9182,7 +9228,7 @@ msgstr "Hodnota sedenia"
msgid "Global value"
msgstr "Globálna hodnota"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
#, fuzzy
msgid "Download"
msgstr "Stiahnuť súbor"
@@ -9215,58 +9261,70 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration file"
+msgid "Configuration saved."
+msgstr "Konfiguračný súbor"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
#, fuzzy
msgid "New server"
msgstr "Webový server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Predvolený jazyk"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Predvolený server"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Zobraziť"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokálny"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin Dokumentácia"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9494,65 +9552,65 @@ msgstr "Tabuľka %1$s bola úspešné upravená"
msgid "Function"
msgstr "Funkcia"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Toto možno nepôjde upraviť,
kvôli svojej dĺžke "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binárny - neupravujte "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Vložiť ako nový riadok"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Zobrazujem SQL dotaz"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "a potom"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Späť"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Vložiť nový záznam"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Späť na túto stránku"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Upraviť nasledujúci riadok"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými "
"smermi klávesy CTRL+šípky"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9712,7 +9770,7 @@ msgstr "(\"PRIMARY\" musí byť iba meno primárneho kľúča!)"
msgid "Add to index %s column(s)"
msgstr "Pridať do indexu %s stĺpec"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Počet stĺpcov musí byť väčší ako nula."
@@ -9738,104 +9796,104 @@ msgstr "Tabuľka %s bola skorírovaná do %s."
msgid "The table name is empty!"
msgstr "Tabuľka je prázdna!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Zmeniť poradie tabuľky podľa"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(po jednom)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Presunúť tabuľku do (databáza.tabuľka):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Parametre tabuľky"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Premenovať tabuľku na"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Skopírovať tabuľku do (databáza.tabuľka):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Prepnúť na skopírovanú tabuľku"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Údržba tabuľky"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentovať tabuľku"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabuľka %s bola vyprázdnená"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Vyprázdniť tabuľku (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Sťahujem dáta pre tabuľku"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Prejsť do databázy"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Údržba tabuľky"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analyzovať"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Skontrolovať"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimalizovať"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Opraviť"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Skontrolovať referenčnú integritu:"
@@ -9843,39 +9901,39 @@ msgstr "Skontrolovať referenčnú integritu:"
msgid "Show tables"
msgstr "Zobraziť tabuľky"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Zabrané miesto"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Využitie"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektívny"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Štatistika riadku"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Údaj"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamický"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Dĺžka riadku"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Veľkosť riadku "
@@ -9960,57 +10018,57 @@ msgstr "Žiadny"
msgid "Column %s has been dropped"
msgstr "Tabuľka %s bola odstránená"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Bol pridaný primárny kľúč pre %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Bol pridaný index pre %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Zobraziť informácie o PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Zobraziť prepojenia"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Navrhnúť štruktúru tabuľky"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add column(s)"
msgid "Add column"
msgstr "Pridať stĺpec/stĺpce"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Na konci tabuľky"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Na začiatku tabuľky"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Po %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Vytvoriť index na %s stĺpcoch"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -10038,109 +10096,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Typ dopytu"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Žiadne databázy"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Dáta"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Perština"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Vytvoriť relaciu"
@@ -10284,8 +10368,8 @@ msgstr "Premenovať tabuľku na"
#~ msgid "Imported file compression will be automatically detected from: %s"
#~ msgstr ""
-#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: "
-#~ "%s"
+#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %"
+#~ "s"
#~ msgid "Add into comments"
#~ msgstr "Pridať do komentárov"
diff --git a/po/sl.po b/po/sl.po
index 67ee32e562..6badd8c963 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,22 +1,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-03-24 22:38+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"
+"Language: sl\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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Pokaži vse"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Iskanje"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Iskanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Izvedi"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Ime ključa"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Zbirka podatkov %1$s je ustvarjena."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Pripomba zbirke podatkov: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Pripomba tabele"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Pripomba tabele"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Stolpec"
@@ -149,11 +149,11 @@ msgstr "Stolpec"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Vrsta"
@@ -163,8 +163,8 @@ msgstr "Vrsta"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -174,7 +174,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Privzeto"
@@ -197,39 +197,40 @@ msgstr "Povezave z"
msgid "Comments"
msgstr "Pripombe"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Da"
@@ -241,8 +242,8 @@ msgstr "Natisni"
msgid "View dump (schema) of database"
msgstr "Preglej povzetek stanja zbirke podatkov"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "V zbirki podatkov ni mogoče najti tabel."
@@ -268,78 +269,78 @@ msgstr "Zbirka podatkov %s je preimenovana v %s"
msgid "Database %s has been copied to %s"
msgstr "Zbirka podatkov %s je kopirana v %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Preimenuj zbirko podatkov v"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Ukaz"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Odstrani zbirko podatkov"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Zbirka podatkov %s je zavržena."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Zavrzi zbirko podatkov (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiraj zbirko podatkov v"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo struktura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura in podatki"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podatki"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE pred kopiranjem"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj vrednost AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Dodaj omejitve"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Preklopi na kopirano zbirko podatkov"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Pravilo za razvrščanje znakov"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti "
"zakaj, kliknite %stukaj%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Uredi ali izvozi relacijsko shemo"
@@ -356,17 +357,17 @@ msgstr "Uredi ali izvozi relacijsko shemo"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabela"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "vrstic"
@@ -382,21 +383,21 @@ msgstr "v uporabi"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Ustvarjeno"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Zadnjič posodobljeno"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Zadnjič pregledano"
@@ -409,97 +410,90 @@ msgstr[1] "%s tabeli"
msgstr[2] "%s tabele"
msgstr[3] "%s tabel"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Poizvedba SQL je bila uspešno izvedena"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Za prikaz morate izbrati morate vsaj en stolpec"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Preklopi na"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "vidni graditelj"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Razvrsti"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Naraščajoče"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Padajoče"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Pokaži"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteriji"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Vstavi"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "In"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Briši"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ali"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Spremeni"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Dodaj/Odstrani vrstice meril"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Dodaj/Odstrani stolpce"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Osveži poizvedbo"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Uporabi tabele"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Poizvedba SQL na zbirki podatkov %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
@@ -542,7 +536,7 @@ msgstr[3] "%s zadetkov v tabeli %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Prebrskaj"
@@ -551,14 +545,15 @@ msgstr "Prebrskaj"
msgid "Delete the matches for the %s table?"
msgstr "Izbrišem zadetke v tabeli %s?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Izbriši"
@@ -599,17 +594,17 @@ msgstr "V stolpcu:"
msgid "No tables found in database"
msgstr "V zbirki podatkov ni mogoče najti tabel"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s je izpraznjena"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Pogled %s je zavržen"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s je zavržena"
@@ -622,11 +617,11 @@ msgstr "Sledenje je aktivno."
msgid "Tracking is not active."
msgstr "Sledenje ni aktivno."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -650,22 +645,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Z označenim:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Označi vse"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Odznači vse"
@@ -674,16 +669,16 @@ msgid "Check tables having overhead"
msgstr "Preveri prekoračene"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvozi"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Pogled za tiskanje"
@@ -695,28 +690,46 @@ msgstr "Izprazni"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Zavrzi"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Preveri tabelo"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiraj tabelo"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Popravi tabelo"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analiziraj tabelo"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Pojdi v tabelo"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Podatke v tabeli zamenjaj z datoteko"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Podatke v tabeli zamenjaj z datoteko"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Slovar podatkov"
@@ -730,10 +743,10 @@ msgstr "Sledene tabele"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Zbirka podatkov"
@@ -741,36 +754,36 @@ msgstr "Zbirka podatkov"
msgid "Last version"
msgstr "Zadnja različica"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Ustvarjeno"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Posodobljeno"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Stanje"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Dejanje"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Izbriši podatke sledenja te tabele"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktivno"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "ni aktivno"
@@ -778,11 +791,11 @@ msgstr "ni aktivno"
msgid "Versions"
msgstr "Različice"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Poročilo sledenja"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Posnetek strukture"
@@ -790,8 +803,8 @@ msgstr "Posnetek strukture"
msgid "Untracked tables"
msgstr "Nesledene tabele"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Sledi tabeli"
@@ -850,8 +863,8 @@ msgstr "Dump je shranjen v datoteko %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev."
@@ -922,6 +935,13 @@ msgstr ""
"navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če "
"povečate vaše časovne omejitve PHP."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Poizvedba SQL je bila uspešno izvedena"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -946,225 +966,243 @@ msgstr "Kliknite za odznačitev"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Ali res želite "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Brisanje dogodka"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Brisanje procedure"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Brisanje podatkov sledenja"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Brisanje primarnega ključa/indeksa"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Ta operacija lahko traja dolgo časa. Vseeno nadaljujem?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "ONEMOGOČILI boste shrambo BLOB!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Ali ste prepričani, da želite onemogočiti vse sklice BLOB za zbirko podatkov "
"%s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "V obliki manjka vrednost!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "To ni število!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Ime gostitelja je prazno!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Uporabniško ime je prazno!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Geslo je prazno!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Gesli se ne ujemata!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Dodaj novega uporabnika"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Ustvari uporabnika"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Ponovno nalaganje privilegijev"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Odstranjevanje izbranih uporabnikov"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Zapri"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Prekliči"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Nalaganje"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Obdelovanje zahteve"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Napaka v obdelovanju zahteve"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Brisanje stolpca"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Dodajanje primarnega ključa"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "V redu"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Preimenovanje zbirk podatkov"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Ponovno nalaganje zbirke podatkov"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Kopiranje zbirke podatkov"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Spreminjanje nabora znakov"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tabele morajo imeti vsaj en stolpec"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Ustvari tabelo"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Iskanje"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Skrij polje poizvedbe"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Prikaži polje poizvedbe"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Urejanje v vrstici"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Shrani"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skrij"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Skrij iskalne pogoje"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Prikaži iskalne pogoje"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Prezri"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Izberite referenčni ključ"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Izberite tuji ključ"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Prosimo, izberite primarni ključ ali unikatni ključ"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Izberite stolpec za prikaz"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Dodaj možnost za stolpec "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Ustvari geslo"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Ustvari"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Spremeni geslo"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Več"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1174,254 +1212,260 @@ msgstr ""
"Najnovejša različica je %s, izdana %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", zadnja ustaljena različica:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Pojdi v zbirko podatkov"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Končano"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Prejšnji"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Naslednji"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Danes"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "januar"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "februar"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "marec"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "april"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "maj"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "junij"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "julij"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "avgust"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "september"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "oktober"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "november"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "nedelja"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "ponedeljek"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "torek"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "sreda"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "četrtek"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "petek"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "sobota"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "ned"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "pon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "sre"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "čet"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "pet"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "sob"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "ne"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "po"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "sr"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "če"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "pe"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "so"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "ted."
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Ura"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekunda"
@@ -1474,33 +1518,33 @@ msgid "No index defined!"
msgstr "Ni definiranega indeksa!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indeksi"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Edinstven"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Stisnjeno"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalnost"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Pripomba"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uredi"
@@ -1524,18 +1568,18 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Zbirke podatkov"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Napaka"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -1544,7 +1588,7 @@ msgstr[1] "Spremenjeni sta %1$d vrstici."
msgstr[2] "Spremenjene so %1$d vrstice."
msgstr[3] "Spremenjenih je %1$d vrstic."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -1553,7 +1597,7 @@ msgstr[1] "Izbrisani sta %1$d vrstici."
msgstr[2] "Izbrisane so %1$d vrstice."
msgstr[3] "Izbrisanih je %1$d vrstic."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1648,8 +1692,8 @@ msgstr "Dobrodošli v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
@@ -1797,19 +1841,19 @@ msgstr "Tabele"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Podatki"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Skupaj"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Presežek"
@@ -1900,16 +1944,16 @@ msgstr ""
"konfiguracijo."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Strežnik"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s bi morali nadgraditi na različico %s ali novejšo."
@@ -1944,7 +1988,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2092,7 +2136,7 @@ msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktura"
@@ -2126,7 +2170,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv"
@@ -2285,7 +2329,7 @@ msgstr "Dovoli uporabnikom prilagajati to vrednost"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Ponastavi"
@@ -2415,7 +2459,7 @@ msgid "Compress on the fly"
msgstr "Stisni med izvajanjem"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfiguracijska datoteka"
@@ -2544,7 +2588,7 @@ msgid "Character set of the file"
msgstr "Nabor znakov datoteke"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Oblika"
@@ -2845,7 +2889,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Prilagodite prikaz navigacijskega okvirja"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Strežniki"
@@ -3616,7 +3660,7 @@ msgstr "Konfiguracijska datoteka SweKey"
msgid "Authentication method to use"
msgstr "Način overovitve za uporabo"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Vrsta overovitve"
@@ -4130,9 +4174,9 @@ msgstr "Potrebuje omogočen Preverjalnik SQL"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Geslo"
@@ -4156,8 +4200,8 @@ msgstr ""
"Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous"
"[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Uporabniško ime"
@@ -4282,7 +4326,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Zgosti večkratne stavke"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Preveri za najnovejšo različico"
@@ -4431,7 +4475,7 @@ msgstr "Dogodki"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Ime"
@@ -4454,8 +4498,8 @@ msgid "Designer"
msgstr "Oblikovalnik"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegiji"
@@ -4467,7 +4511,7 @@ msgstr "Rutina"
msgid "Return type"
msgstr "Vrnjena vrsta"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4490,23 +4534,23 @@ msgstr "Strežnik se ne odziva"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Podrobnosti ..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Spremeni geslo"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Brez gesla"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ponovno vnesi"
@@ -4528,7 +4572,7 @@ msgid "Create"
msgstr "Ustvari"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Brez privilegijev"
@@ -4633,8 +4677,8 @@ msgstr ", @TABLE@ bo postalo ime tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
@@ -4656,7 +4700,7 @@ msgstr "Stiskanje:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Brez"
@@ -4833,7 +4877,7 @@ msgstr "Uredi po ključu"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Možnosti"
@@ -4866,62 +4910,62 @@ msgstr "Prikaži vsebine BLOB"
msgid "Browser transformation"
msgstr "Pretvorba z brskalnikom"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopiraj"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Vrstica je izbrisana"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Prekini proces"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "v poizvedbi"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Prikazujem vrstice"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "skupaj"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Poizvedba je potrebovala %01.4f s"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Spremeni"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Dejanja rezultatov poizvedbe"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Pogled za tiskanje (s polnimi besedili)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Prikaži grafikon"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Ustvari pogled"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Povezave ni mogoče najti"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Podatki o različici"
@@ -5365,8 +5409,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači "
"strani PrimeBase XT%s."
@@ -5467,9 +5511,9 @@ msgstr "Prikaži vrste MIME"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Gostitelj"
@@ -5480,7 +5524,7 @@ msgid "Generation Time"
msgstr "Čas nastanka"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Različica strežnika"
@@ -5841,7 +5885,32 @@ msgstr "Nobeno"
msgid "Convert to Kana"
msgstr "Pretvori v kano"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "pe"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Pošlji"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Dodaj indeks"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Brez sprememb"
@@ -6150,8 +6219,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Uporabniško ime"
@@ -6172,7 +6241,7 @@ msgstr "Spremenljivka"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Vrednost"
@@ -6192,34 +6261,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Dodaj uporabnika podvojevanja podrejencev"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Kateri koli uporabnik"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Uporabi besedilno polje"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Kateri koli gostitelj"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokalno"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ta strežnik"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Uporabi tabelo gostiteljev"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6283,7 +6352,7 @@ msgstr "Atributi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Dodatno"
@@ -6376,12 +6445,12 @@ msgid "Toggle scratchboard"
msgstr "Preklopi odložišče (scratchboard)"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznani jezik: %1$s."
@@ -6454,7 +6523,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Počisti"
@@ -6486,10 +6555,6 @@ msgstr "Ločilo"
msgid " Show this query here again "
msgstr " Ponovno pokaži poizvedbo v tem oknu "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Pošlji"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Samo pogled"
@@ -6498,7 +6563,7 @@ msgstr "Samo pogled"
msgid "Location of the text file"
msgstr "Mesto datoteke z besedilom"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "imenik za nalaganje datotek"
@@ -6548,19 +6613,19 @@ msgstr "ZAČETEK NAVADNO"
msgid "END RAW"
msgstr "KONEC NAVADNO"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Samodejno sem dodal levo črtico na konec poizvedbe!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Odprt citat"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Neveljavni identifikator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Neznan niz ločil"
@@ -6608,7 +6673,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -6655,12 +6720,12 @@ msgid "As defined:"
msgstr "Kot določeno:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primarni"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Polno besedilo"
@@ -6674,7 +6739,7 @@ msgstr ""
"avtorju."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Pogon skladiščenja"
@@ -6682,12 +6747,12 @@ msgstr "Pogon skladiščenja"
msgid "PARTITION definition"
msgstr "Definicija PARTITION"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Dodaj %s stolpec(-cev)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Dodati morate vsaj en stolpec."
@@ -6865,73 +6930,73 @@ msgstr "V arhivu ZIP ni bilo najdenih datotek!"
msgid "Error in ZIP archive:"
msgstr "Napaka v arhivu ZIP:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Splošne nastavitve"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Razvrščanje znakov povezave MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Prikazne nastavitve"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Več nastavitev"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Različica protokola"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Uporabnik"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Kodna tabela MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Spletni strežnik"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Različica odjemalca MySQL"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "Razširitev PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Pokaži podatke o PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Uradna domača stran phpMyAdmin"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Prispevaj"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Prosi za podporo"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Seznam sprememb"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6943,7 +7008,7 @@ msgstr ""
"privzetimi nastavitvami, zato je izpostavljen vdorom. Čimprej odpravite to "
"varnostno luknjo tako, da uporabniku 'root' nastavite geslo."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6952,7 +7017,7 @@ msgstr ""
"V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Ta možnost ni "
"združljiva s phpMyAdminom in lahko pokvari nekatere podatke!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6962,7 +7027,7 @@ msgstr ""
"nabor znakov. Brez razširitve mbstring phpMyAdmin ni sposoben pravilno "
"razcepiti nizov, kar lahko vodi v nepričakovane rezultate."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6974,7 +7039,7 @@ msgstr ""
"piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla "
"prej, kot je določeno v phpMyAdminu."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -6983,13 +7048,13 @@ msgstr ""
"določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla prej, kot je "
"določeno v phpMyAdminu."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Konfiguracijski datoteki morate sedaj določiti skrivno geslo "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -6999,7 +7064,7 @@ msgstr ""
"obstaja v vaši mapi phpMyAdmin. Priporočljivo jo je odstraniti, ko je "
"phpMyAdmin enkrat že konfiguriran."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7009,7 +7074,7 @@ msgstr ""
"nekatere razširjene zmožnosti onemogočene. Če želite izvedeti zakaj, "
"kliknite %stukaj%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7019,7 +7084,7 @@ msgstr ""
"nekatere funkcije phpMyAdmina manjkale. Na primer navigacijski okvir se ne "
"bo osveževal samodejno."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7028,7 +7093,7 @@ msgstr ""
"Vaša PHP-knjižica MySQL različice %s se razlikuje od vašega strežnika MySQL "
"različice %s. To lahko povzroči nepredvidljivo vedenje."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7049,12 +7114,12 @@ msgstr "Filtriranje"
msgid "filter tables by name"
msgstr "filtriraj tabele po imenu"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Ustvari tabelo"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Prosimo, izberite zbirko podatkov"
@@ -7421,108 +7486,108 @@ msgid "Includes all privileges except GRANT."
msgstr "Vsebuje vse privilegije razen GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Omogoča spreminjanje strukture obstoječih tabel."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Omogoča ustvarjanje shranjenih rutin."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Omogoča ustvarjanje novih tabel."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Omogoča ustvarjanje začasnih tabel."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Omogoča ustvarjanje novih pogledov."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Omogoča brisanje podatkov."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Omogoča brisanje podatkovnih zbirk in tabel."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Omogoča brisanje tabel."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Omogoča izvajanje shranjenih rutin."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Omogoča ustvarjanje in brisanje indeksov."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Omogoča vstavljanje in zamenjavo podatkov."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Omogoča zaklepanje tabel za trenutno temo."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7530,62 +7595,62 @@ msgstr ""
"Omeji število ukazov za spremembo tabel ali zbirke podatkov, ki jih "
"uporabnik lahko izvrši v eni uri."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Omogoča ogled procesov vseh uporabnikov"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "V tej različici MySQL nima pomena."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Potrebno za podrejene strežnike pri replikaciji."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Omogoča branje podatkov."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Omogoča ugašanje strežnika."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7596,12 +7661,12 @@ msgstr ""
"globalnih spremenljivk in ukinjanje procesov drugih uporabnikov."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Omogoča ustvarjanje in brisanje sprožilcev"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Omogoča spreminjanje podatkov."
@@ -7614,191 +7679,191 @@ msgctxt "None privileges"
msgid "None"
msgstr "Brez"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilegiji tipični za tabelo"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Opomba: Imena privilegijev MySQL so zapisana v angleščini "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globalni privilegiji"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilegiji tipični za podatkovno zbirko"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globalni privilegiji"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilegiji tipični za podatkovno zbirko"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Omejitve virov"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Podatki o prijavi"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Ne spreminjaj gesla"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Najden ni bil noben uporabnik."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Uporabnik %s že obstaja!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Dodali ste novega uporabnika."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Posodobili ste privilegije za %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Odvzeli ste privilegije za %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Geslo za %s je uspešno spremenjeno."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Brišem %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Ni izbranih uporabnikov za brisanje!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Osvežujem privilegije"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Uspešno sem izbrisal izbrane uporabnike."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Uspešno sem osvežil privilegije."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Uredi privilegije"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Odvzemi"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Kateri koli"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Pregled uporabnikov"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Dovoli"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Dodaj novega uporabnika"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Izbriši izbrane uporabnike"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilegiji tipični za stolpec"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Dodaj privilegije na naslednji podatkovni zbirki"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na naslednji tabeli"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Spremeni prijavne informacije / Kopiraj uporabnika"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Ustvari novega uporabnika z enakimi pravicami in ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... obdrži starega."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... izbriši starega s seznama uporabnikov."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7806,43 +7871,43 @@ msgstr ""
" ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži "
"njegove pravice."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Podatkovna zbirka za uporabnika"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Nobena"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Dodeli vse privilegije za podatkovno zbirko "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Uporabniški dostop do "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globalno"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "glede na zbirko podatkov"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "nadomestni znak"
@@ -8988,7 +9053,7 @@ msgstr "Vrednost seje"
msgid "Global value"
msgstr "Skupna vrednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Prenesi"
@@ -9028,55 +9093,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Nezavarovana povezava"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Hramba konfiguracije"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Pregled"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Prikaži skrita sporočila (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Ni konfiguriranih strežnikov"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Nov strežnik"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Privzet jezik"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "naj uporabnik izbere"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- noben -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Privzet strežnik"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Konec vrstice"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Prikaži"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Naloži"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "Domača stran phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Daruj"
@@ -9338,62 +9415,62 @@ msgstr "Tabela %1$s je bila uspešno spremenjena"
msgid "Function"
msgstr "Funkcija"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Odstrani sklic shrambe BLOB"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Dvojiško - ne urejaj"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Naloži v shrambo BLOB"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Vstavi kot novo vrstico"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Vstavi kot novo vrstico in presliši napake"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Prikaži poizvedbo insert"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "in potem"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Nazaj na prejšnjo stran"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Vstavi še eno novo vrstico"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Pojdi nazaj na stran"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Uredi naslednjo vrstico"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za "
"premik kamor koli"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Nadaljuj vstavljanje z %s vrsticami"
@@ -9550,7 +9627,7 @@ msgstr "(\"PRIMARY\" mora biti ime samo primarnega ključa!)"
msgid "Add to index %s column(s)"
msgstr "Dodaj indeksu %s stolpec(ce)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Število stolpcev mora biti večje od nič."
@@ -9576,97 +9653,97 @@ msgstr "Tabela %s je skopirana v %s."
msgid "The table name is empty!"
msgstr "Ime tabele je prazno!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Spremeni vrstni red prikaza tabele za"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(posamezno)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Premakni tabelo v (podatkovna_zbirka.tabela):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Možnosti tabele"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Preimenuj tabelo v"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopiraj tabelo v (podatkovna_zbirka.tabela):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Preklopi na kopirano tabelo"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Vzdrževanje tabele"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentiraj tabelo"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabela %s je osvežena"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Počisti tabelo (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Izbriši podatke ali tabelo"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Izprazni tabelo (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Izbriši tabelo (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Vzdrževanje particij"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Particija %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analiziraj"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Označi"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimiraj"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Ponovno sestavi"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Popravi"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Odstrani particioniranje"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Preveri referenčno integriteto:"
@@ -9674,39 +9751,39 @@ msgstr "Preveri referenčno integriteto:"
msgid "Show tables"
msgstr "Pokaži tabele"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Poraba prostora"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Uporaba"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Učinkovito"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistika vrstic"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Izjave"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statično"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamično"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Dolžina vrstice"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Velikost vrstice "
@@ -9784,52 +9861,52 @@ msgstr "Brez"
msgid "Column %s has been dropped"
msgstr "Stolpec %s je zavržen"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Na %s je dodan primarni ključ"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Na %s je dodan indeks"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Prikaži več dejanj"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Pogled relacij"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Predlagaj strukturo tabele"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Dodaj stolpec"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Na koncu tabele"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Na začetku tabele"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Po %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Ustvari indeks na %s stolpcih"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "po particijah"
@@ -9857,7 +9934,7 @@ msgstr "Sledenje %s.%s, različice %s je aktivirano."
msgid "SQL statements executed."
msgstr "Stavki SQL so izvedeni."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9865,103 +9942,133 @@ msgstr ""
"Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke "
"podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
"Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih "
"izvršite."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Različica posnetka %s (koda SQL)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Sledi tem stavkom opredeljevanja podatkov:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Zberi napake"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Sledi tem stavkom upravljanja s podatki:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Sledenje stavkom"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Prikaži %s z datumi od %s do %s uporabnika %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Izbriši podatke sledenja te tabele"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Brez zbirk podatkov"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Datum"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Stavek opredeljevanja podatkov"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Stavek upravljanja s podatki"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "Odložen SQL (prenos datoteke)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "Odložen SQL"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "Izvršitev SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Izvozi kot %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Prikaži različice"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Različica"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Dezaktiviraj sledenje za %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Dezaktiviraj zdaj"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Aktiviraj sledenje %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Aktiviraj zdaj"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Ustvari različico %s tabele %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Sledi tem stavkom opredeljevanja podatkov:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Sledi tem stavkom upravljanja s podatki:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Ustvari različico"
diff --git a/po/sq.po b/po/sq.po
index 99d0a2e1e4..f093ac6d1c 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: albanian \n"
-"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Shfaqi të gjithë"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Kërko"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Kërko"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Zbato"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Emri i kyçit"
@@ -118,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "U krijua baza e të dhënave %1$s."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komenti për databazën: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentet e tabelës"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,7 +136,7 @@ msgstr "Komentet e tabelës"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -149,11 +149,11 @@ msgstr "Emrat e kollonave"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Lloji"
@@ -163,8 +163,8 @@ msgstr "Lloji"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -174,7 +174,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Prezgjedhur"
@@ -197,39 +197,40 @@ msgstr "Lidhje me"
msgid "Comments"
msgstr "Komente"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr " Jo "
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr " Po "
@@ -241,8 +242,8 @@ msgstr "Printo"
msgid "View dump (schema) of database"
msgstr "Shfaq dump (skema) e databazës"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Nuk gjenden tabela në databazë."
@@ -268,81 +269,81 @@ msgstr "Databazës %s i është ndryshuar emri në %s"
msgid "Database %s has been copied to %s"
msgstr "Databaza %s është kopjuar tek %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ndysho emrin e databazës në"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Ndysho emrin e databazës në"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databaza %s u eleminua."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Asnjë databazë"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopjo databazën në"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Vetëm struktura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura dhe të dhënat"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Vetëm të dhënat"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE para se të kopjohet"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Shto %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Shto vlerë AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Shto kushte"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Kalo tek databaza e kopjuar"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -354,7 +355,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:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -364,17 +365,17 @@ msgstr "Skema relacionale"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabela"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "rreshta"
@@ -390,21 +391,21 @@ msgstr "në përdorim"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Krijimi"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Ndryshimi i fundit"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Kontrolli i fundit"
@@ -416,101 +417,94 @@ msgid_plural "%s tables"
msgstr[0] "%s tabela(at)"
msgstr[1] "%s tabela(at)"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Query SQL u zbatua me sukses"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Renditja"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Në ngjitje"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Në zbritje"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Shfaq"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteri"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Shto"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Dhe"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Fshi"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ose"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Ndrysho"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Shto/Fshi rreshtin e kriterit"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Shto/Fshi kollonat e fushës"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Përditëso kërkesën"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Përdor tabelat"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "Kërkesë SQL tek databaza %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Dërgo Query"
@@ -552,7 +546,7 @@ msgstr[1] "%s korrispondon(jnë) tek tabela %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Shfleto"
@@ -562,14 +556,15 @@ msgstr "Shfleto"
msgid "Delete the matches for the %s table?"
msgstr "Dump i të dhënave për tabelën"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Fshi"
@@ -613,17 +608,17 @@ msgstr "Tek fusha:"
msgid "No tables found in database"
msgstr "Nuk gjenden tabela në databazë."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s u zbraz"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Paraqitja %s u eleminua"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s u eleminua"
@@ -636,11 +631,11 @@ msgstr "Gjurmimi është aktiv."
msgid "Tracking is not active."
msgstr "Gjurmimi nuk është aktiv."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -665,22 +660,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "N.q.s. të zgjedhur:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Zgjidh gjithçka"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Asnjë zgjedhje"
@@ -689,16 +684,16 @@ msgid "Check tables having overhead"
msgstr "Zgjidh të mbingarkuarit"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksporto"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Shfaq për printim"
@@ -710,28 +705,44 @@ msgstr "Zbraz"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Elemino"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Kontrollo tabelën"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizo tabelën"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Riparo tabelën"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analizo tabelën"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Zëvendëso të dhënat e tabelës me file"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Zëvendëso të dhënat e tabelës me file"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
#, fuzzy
msgid "Data Dictionary"
msgstr "Data Dictionary"
@@ -746,10 +757,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Databazat"
@@ -757,37 +768,37 @@ msgstr "Databazat"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Krijo"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Gjendja"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Veprimi"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -796,11 +807,11 @@ msgstr ""
msgid "Versions"
msgstr "Operacione"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Vetëm struktura"
@@ -809,8 +820,8 @@ msgstr "Vetëm struktura"
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Kontrollo tabelën"
@@ -871,8 +882,8 @@ msgstr "Dump u ruajt tek file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -930,6 +941,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Query SQL u zbatua me sukses"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -954,262 +972,280 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Komandat \"DROP DATABASE\" nuk janë aktive."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Konfermo: "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Jeni duke SHKATËRRUAR një databazë komplete!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Jeni duke SHKATËRRUAR një databazë komplete!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Jeni duke SHKATËRRUAR një databazë komplete!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "Proceset"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Lejon futjen dhe mbishkrimin e të dhënave."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Mungon një vlerë në formular!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ky nuk është një numër!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Emri i host është bosh!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Emri i përdoruesit është bosh!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Fjalëkalimi është bosh!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Fjalëkalimi nuk korrispondon!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Shto një përdorues të ri"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Versioni i MySQL"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Duke ringarkuar të drejtat"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Heq përdoruesit e zgjedhur"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Lokal"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Proceset"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Ndysho emrin e databazës në"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Ndysho emrin e databazës në"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopjo databazën në"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Familje gërmash"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "Zgjidh të paktën një kollonë për të shfaqur"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Krijo një faqe të re"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Kërko"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "query SQL"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "query SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Ruaj"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "query SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "query SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Shpërfill"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Zgjidh fushën që dëshiron të shohësh"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "Gjeneruar nga"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Hën"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1217,123 +1253,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Asnjë databazë"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Asnjë lloj"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Paraardhësi"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Në vazhdim"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gjithsej"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Pri"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Maj"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Qer"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Kor"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Gsh"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Tet"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Shk"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Pri"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1341,176 +1382,176 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Qer"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Kor"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Gsh"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sht"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Tet"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nën"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dhj"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Djl"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Hën"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pre"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Djl"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Hën"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mër"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Enj"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pre"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sht"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Djl"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Hën"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mër"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Enj"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pre"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sht"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "në përdorim"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1561,34 +1602,34 @@ msgid "No index defined!"
msgstr "Asnjë tregues i përcaktuar!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Tregues"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "I vetëm"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr ""
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Komente"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ndrysho"
@@ -1610,25 +1651,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databazat"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Gabim"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1636,7 +1677,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Nuk ka rreshta të zgjedhur"
msgstr[1] "Nuk ka rreshta të zgjedhur"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1729,8 +1770,8 @@ msgstr "Mirësevini tek %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1878,19 +1919,19 @@ msgstr "Tabela"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Të dhëna"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Gjithsej"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Mbi limit"
@@ -1985,16 +2026,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Serveri"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Duhet të instaloni %s %s ose superior."
@@ -2029,7 +2070,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentet"
@@ -2177,7 +2218,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktura"
@@ -2212,7 +2253,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "directory e upload të server-it web"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet"
@@ -2383,7 +2424,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Rinis"
@@ -2500,7 +2541,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2628,7 +2669,7 @@ msgid "Character set of the file"
msgstr "Familja gërmave të file:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Formati"
@@ -2954,7 +2995,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "Serveri"
@@ -3694,7 +3735,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4162,9 +4203,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Fjalëkalimi"
@@ -4184,8 +4225,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Emri i përdoruesit:"
@@ -4301,7 +4342,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4448,7 +4489,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Emri"
@@ -4471,8 +4512,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Të drejtat"
@@ -4484,7 +4525,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4503,23 +4544,23 @@ msgstr "Serveri nuk përgjigjet"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Ndrysho fjalëkalimin"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Asnjë fjalëkalim"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Rifut"
@@ -4541,7 +4582,7 @@ msgid "Create"
msgstr "Krijo"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Asnjë e drejtë"
@@ -4666,8 +4707,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4687,7 +4728,7 @@ msgstr "Kompresim"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Asnjë lloj"
@@ -4868,7 +4909,7 @@ msgstr "Rendit sipas kyçit"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Operacione"
@@ -4909,65 +4950,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Transformimi i Shfletuesit"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "rreshti u fshi"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Hiq"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "tek query"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Shfaqja e regjistrimeve "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "Gjithsej"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query ka zgjatur %01.4f sec"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ndrysho"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Shfaq për printim (me full text)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Shfaq skemën PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Versioni i MySQL"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Lidhja nuk u gjet"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "Informacione mbi Identifikimin"
@@ -5354,8 +5395,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5475,9 +5516,9 @@ msgstr "Lloje MIME në dispozicion"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5488,7 +5529,7 @@ msgid "Generation Time"
msgstr "Gjeneruar më"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Versioni i MySQL"
@@ -5829,7 +5870,30 @@ msgstr "Asnjë lloj"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Pre"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Dërgoje"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Asnjë ndryshim"
@@ -6135,8 +6199,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Emri i përdoruesit"
@@ -6157,7 +6221,7 @@ msgstr "E ndryshueshme"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Vlerë"
@@ -6176,34 +6240,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Çfarëdo përdorues"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Përdor fushë teksti"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Çfarëdo host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Këtë Host"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Përdor Tabelën e Host-it"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6267,7 +6331,7 @@ msgstr "Pronësi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6370,12 +6434,12 @@ msgid "Toggle scratchboard"
msgstr "(ç')aktivo scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6455,7 +6519,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Zbato query SQL tek databaza %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Kalendari"
@@ -6490,10 +6554,6 @@ msgstr ""
msgid " Show this query here again "
msgstr "Tregoje përsëri këtë query"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Dërgoje"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Shfaq vetëm"
@@ -6502,7 +6562,7 @@ msgstr "Shfaq vetëm"
msgid "Location of the text file"
msgstr "Pozicioni i file"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "directory e upload të server-it web"
@@ -6555,19 +6615,19 @@ msgstr "FILLIMI I RAW"
msgid "END RAW"
msgstr "FUNDI I RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Thonjëza të pambyllura"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Identifikues i pavlefshëm"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Stringë Punctuation e panjohur"
@@ -6621,7 +6681,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Treguesi"
@@ -6670,12 +6730,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primar"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Teksti komplet"
@@ -6689,7 +6749,7 @@ msgstr ""
"autorin, çfarë %s bën."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6697,12 +6757,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Shto një fushë të re"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6906,82 +6966,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Karakteristikat e përgjithshme të relacionit"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Vendosja e lidhjes MySQL"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Karakteristikat e përgjithshme të relacionit"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Përdorues"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "Set simbolesh MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "Versioni i PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Trego info mbi PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Faqja zyrtare e phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Pronësi"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Asnjë ndryshim"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6993,21 +7053,21 @@ msgstr ""
"MySQL funksionues me këto zgjedhje është i pambrojtur ndaj sulmeve, dhe ju "
"duhet patjetër të korrigjoni këtë vrimë në siguri."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7015,25 +7075,25 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Tani nevoitet një fjalëkalim sekret për file e konfigurimit(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7045,21 +7105,21 @@ 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."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7080,13 +7140,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "Transformo tabelën e renditur sipas"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Krijo një faqe të re"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Të lutem, zgjidh një databazë"
@@ -7482,114 +7542,114 @@ msgid "Includes all privileges except GRANT."
msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "Lejon krijimin dhe eleminimin e treguesve."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "Lejon krijimin e tabelave të reja."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Lejon krijimin e tabelave të reja."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Lejon krijimin e tabelave të përkohëshme."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "Lejon krijimin e tabelave të reja."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Lejon fshirjen e të dhënave."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Lejon eleminimin e databazave dhe tabelave."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Lejon eleminimin e tabelave."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Lejon krijimin dhe eleminimin e treguesve."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Lejon futjen dhe mbishkrimin e të dhënave."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Lejon bllokimin e tabelave për thread e momentit."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7597,63 +7657,63 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nuk ka asnjë efekt tek ky version i MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Nevoitet për replikimin e slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Lejon leximin e të dhënave."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Mundëson hyrjen tek lista komplete e databazave."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Lejon përfundimin e serverit."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7664,13 +7724,13 @@ msgstr ""
"ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Lejon krijimin dhe eleminimin e treguesve."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Lejon ndryshimin e të dhënave."
@@ -7685,235 +7745,235 @@ msgctxt "None privileges"
msgid "None"
msgstr "Asnjë lloj"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Të drejta relative me tabelat"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Të drejtat e përgjithshme"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Të drejta specifike të databazës"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administrimi"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Të drejtat e përgjithshme"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Të drejta specifike të databazës"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Limitet e rezervave"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Informacione mbi Identifikimin"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Mos ndrysho fjalëkalim"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Nuk u gjet asnjë përdorues."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Përdoruesi %s ekziston!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Ke shtuar një përdorues të ri."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ke rifreskuar lejet për %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ke anulluar të drejtat për %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, 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:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Në fshirje e sipër të %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Duke ringarkuar të drejtat"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Të drejtat u përditësuan me sukses."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Ndrysho të drejtat"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Hiq"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Çfarëdo"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Paraqitja e përgjithshme e përdoruesve"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Shto një përdorues të ri"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Heq përdoruesit e zgjedhur"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
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:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Të drejtat relative të kollonave"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Shto të drejta tek databaza në vazhdim"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Shto të drejta tek tabela në vazhdim"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
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:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... mbaj të vjetrin."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... elemino të vjetrin nga tabela e përdoruesve."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Asnjë lloj"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Kontrollo të drejtat për databazën "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Përdoruesit që kanë hyrje tek "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globale"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "specifik i databazës"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "wildcard"
@@ -8935,7 +8995,7 @@ msgstr "Vlera seancës"
msgid "Global value"
msgstr "Vlerë Globale"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8967,57 +9027,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Ndryshimet u ruajtën"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokal"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Dokumente të phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9244,62 +9316,62 @@ msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
msgid "Function"
msgstr "Funksioni"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Për shkak të gjatësisë saj,
kjo fushë nuk mund të ndryshohet "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Të dhëna të tipit binar - mos ndrysho"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Shto një rresht të ri"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Mbrapa"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Shto një regjistrim të ri"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Kthehu mbrapa tek kjo faqe"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9457,7 +9529,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Shto tek treguesi i %s kolonës(ave)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9483,105 +9555,105 @@ msgstr "Tabela %s u kopjua tek %s."
msgid "The table name is empty!"
msgstr "Emri i tabelës është bosh!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Transformo tabelën e renditur sipas"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(një nga një)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Sposto tabelën në (databaza.tabela):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcione për tabelën"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Riemërto tabelën në"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopjo tabelën tek (databaza.tabela):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Kalo tek tabela e kopjuar"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Administrimi i tabelës"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmento tabelën"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabela %s u rifreskua"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Rifillo (\"FLUSH\") tabelën"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Dump i të dhënave për tabelën"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Asnjë databazë"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Administrimi i tabelës"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Çekisht"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Riparo tabelën"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Kontrollo integritetin e informacioneve:"
@@ -9589,39 +9661,39 @@ msgstr "Kontrollo integritetin e informacioneve:"
msgid "Show tables"
msgstr "Shfaq tabelat"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Hapësira e përdorur"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Përdorimi"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektiv"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistikat e rreshtave"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Instruksione"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Gjatësia e rreshtit"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Madhësia e rreshtit"
@@ -9706,56 +9778,56 @@ msgstr "Asnjë lloj"
msgid "Column %s has been dropped"
msgstr "Tabela %s u eleminua"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Një kyç primar u shtua tek %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Një tregues u shtua tek %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Trego info mbi PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Shiko relacionet"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Propozo strukturën e tabelës"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "Shto një fushë të re"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Në fund të tabelës"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Në fillim të tabelës"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Mbas %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Krijo një tregues tek %s columns"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9783,109 +9855,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Lloji i query"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Lejon futjen dhe mbishkrimin e të dhënave."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Asnjë databazë"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Të dhëna"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Versioni i PHP"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Versioni i MySQL"
diff --git a/po/sr.po b/po/sr.po
index ba9fcdf4b9..3e9e673978 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,22 +1,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: serbian_cyrillic \n"
-"Language: sr\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"
+"Language: sr\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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Прикажи све"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Претраживање"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Претраживање"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Крени"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Име кључа"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "База %s је креирана."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар базе:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Коментари табеле"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "Коментари табеле"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Колона"
@@ -148,11 +148,11 @@ msgstr "Колона"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -162,8 +162,8 @@ msgstr "Тип"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -173,7 +173,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Подразумевано"
@@ -196,39 +196,40 @@ msgstr "Везе ка"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Не"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Да"
@@ -240,8 +241,8 @@ msgstr "Штампај"
msgid "View dump (schema) of database"
msgstr "Прикажи садржај (схему) базе"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Табеле нису пронађене у бази."
@@ -267,78 +268,78 @@ msgstr "База %s је преименована у %s"
msgid "Database %s has been copied to %s"
msgstr "База %s је прекопирана у %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Преименуј базу у"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Наредба"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Уклони базу"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "База %s је одбачена."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Одбаци базу (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копирај базу у"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Само структура"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структура и подаци"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Само подаци"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE пре копирања"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Додај %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Додај AUTO_INCREMENT вредност"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Додај ограничења"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Пребаци се на копирану базу"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Сортирање"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -350,7 +351,7 @@ msgstr ""
"Додатне могућности за рад са повезаним табелама су искључене. Да бисте "
"сазнали зашто, кликните %sовде%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Уреди или извези релациону схему"
@@ -358,17 +359,17 @@ msgstr "Уреди или извези релациону схему"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Табела"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Редова"
@@ -384,21 +385,21 @@ msgstr "се користи"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Направљено"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Последња измена"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Последња провера"
@@ -411,101 +412,94 @@ msgstr[0] "%s табела"
msgstr[1] "%s табела"
msgstr[2] "%s табела"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Ваш SQL упит је успешно извршен"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Морате изабрати бар једну колону за приказ"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Сортирање"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Растући"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Опадајући"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Прикажи"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Критеријум"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "и"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "или"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Промени"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Додај/обриши поље за критеријум"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Додај/обриши колону"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Ажурирај упит"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Користи табеле"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL упит на бази %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Изврши SQL упит"
@@ -548,7 +542,7 @@ msgstr[2] "%s погодака унутар табеле %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Преглед"
@@ -558,14 +552,15 @@ msgstr "Преглед"
msgid "Delete the matches for the %s table?"
msgstr "Приказ података табеле"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Обриши"
@@ -610,17 +605,17 @@ msgstr "Унутар табела:"
msgid "No tables found in database"
msgstr "Табеле нису пронађене у бази."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Табела %s је испражњена"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Поглед %s је одбачен"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Табела %s је одбачена"
@@ -633,11 +628,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -661,22 +656,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s је подразумевани погон складиштења на овом MySQL серверу."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Означено:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Означи све"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "ниједно"
@@ -685,16 +680,16 @@ msgid "Check tables having overhead"
msgstr "Провери табеле које имају прекорачења"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Извоз"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "За штампу"
@@ -706,28 +701,45 @@ msgstr "Испразни"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Одбаци"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Провери табелу"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Оптимизуј табелу"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Поправи табелу"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Анализирај табелу"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "База не постоји"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Замени податке у табели са подацима из датотеке"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Замени податке у табели са подацима из датотеке"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Речник података"
@@ -742,10 +754,10 @@ msgstr "Провери табелу"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "База података"
@@ -754,37 +766,37 @@ msgstr "База података"
msgid "Last version"
msgstr "Направи релацију"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Направи"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Статус"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Акција"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -793,11 +805,11 @@ msgstr ""
msgid "Versions"
msgstr "Персијски"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Само структура"
@@ -807,8 +819,8 @@ msgstr "Само структура"
msgid "Untracked tables"
msgstr "Провери табелу"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Провери табелу"
@@ -869,11 +881,11 @@ msgstr "Садржај базе је сачуван у датотеку %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
-"%sдокументацију%s за начине превазилажења овог ограничења."
+"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
+"sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -940,6 +952,13 @@ msgstr ""
"да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не "
"повећате временска ограничења у PHP-у"
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Ваш SQL упит је успешно извршен"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -964,265 +983,283 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" команда је онемогућена."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Да ли стварно хоћете да "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Овим ћете УНИШТИТИ комплетну базу података!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Овим ћете УНИШТИТИ комплетну базу података!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Овим ћете УНИШТИТИ комплетну базу података!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Процедуре"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Дозвољава уметање и замену података."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Ова операција може да потраје. Да ли да наставимо?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Недостаје вредност у обрасцу!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ово није број!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Име домаћина је празно!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Име корисника није унето!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Лозинка је празна!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Лозинке нису идентичне!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Додај новог корисника"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Направи релацију"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reload privileges"
msgid "Reloading Privileges"
msgstr "Поново учитај привилегије"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Уклони изабране кориснике"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Откажи"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Локални"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Процеси"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "У реду"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Преименуј базу у"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Преименуј базу у"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Копирај базу у"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Карактер сет"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Табела мора имати барем једно поље."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Направи табелу"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Претраживање"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL упит"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL упит"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Складиштења"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Сачувај"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Сакриј"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL упит"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнориши"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Изаберите референцирани кључ"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Изабери страни кључ"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Молимо изаберите примарни или јединствени кључ"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Изабери поља за приказ"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Направи лозинку"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Направи"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промени лозинку"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1230,123 +1267,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Направи релацију"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "База не постоји"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "Подаци"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Следећи"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Укупно"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарни"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "мај"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1354,176 +1396,176 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "дец"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Уто"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Уто"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Уто"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1578,34 +1620,34 @@ msgid "No index defined!"
msgstr "Кључ није дефинисан!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Кључеви"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Јединствени"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Кардиналност"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Коментари"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
@@ -1627,25 +1669,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Базе"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Грешка"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1653,7 +1695,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Нема одабраних редова"
msgstr[1] "Нема одабраних редова"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1746,8 +1788,8 @@ msgstr "Добродошли на %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
@@ -1897,19 +1939,19 @@ msgstr "Табеле"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Подаци"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Укупно"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Прекорачење"
@@ -2006,16 +2048,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сервер"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Неисправан метод аутентикације је задат у конфигурацији:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију."
@@ -2050,7 +2092,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Документација"
@@ -2200,7 +2242,7 @@ msgstr "Ова функционалност %s је погођена позна
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Структура"
@@ -2235,7 +2277,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "директоријум за слање веб сервера "
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Директоријум који сте изабрали за слање није доступан"
@@ -2405,7 +2447,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Поништи"
@@ -2521,7 +2563,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2653,7 +2695,7 @@ msgid "Character set of the file"
msgstr "Карактер сет датотеке:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Формат"
@@ -2981,7 +3023,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Сервери"
@@ -3742,7 +3784,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4214,9 +4256,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Лозинка"
@@ -4236,8 +4278,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Корисничко име:"
@@ -4353,7 +4395,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4501,7 +4543,7 @@ msgstr "Догађаји"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Име"
@@ -4524,8 +4566,8 @@ msgid "Designer"
msgstr "Дизајнер"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Привилегије"
@@ -4537,7 +4579,7 @@ msgstr "Рутине"
msgid "Return type"
msgstr "Повратни тип"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4558,23 +4600,23 @@ msgstr "Сервер не одговара"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Промени лозинку"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Нема лозинке"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Поновите унос"
@@ -4598,7 +4640,7 @@ msgid "Create"
msgstr "Направи"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Нема привилегија"
@@ -4729,8 +4771,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@@ -4753,7 +4795,7 @@ msgstr "Компресија"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "нема"
@@ -4949,7 +4991,7 @@ msgstr "Сортирај по кључу"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Опције"
@@ -4989,65 +5031,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Транформације читача"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Копирај"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Ред је обрисан"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Обустави"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "у упиту"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Приказ записа"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "укупно"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Упит је трајао %01.4f секунди"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Промени"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Операције на резултатима упита"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Поглед за штампу (са пуним текстом)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Прикажи PDF схему"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Направи релацију"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Веза није пронађена"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Информације о верзији"
@@ -5452,8 +5494,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5577,9 +5619,9 @@ msgstr "Доступни MIME-типови"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Домаћин"
@@ -5590,7 +5632,7 @@ msgid "Generation Time"
msgstr "Време креирања"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Верзија сервера"
@@ -5933,7 +5975,32 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Пет"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Пошаљи"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "Додај ново поље"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Нема измена"
@@ -6238,8 +6305,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Име корисника"
@@ -6262,7 +6329,7 @@ msgstr "Променљива"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Вредност"
@@ -6280,34 +6347,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Било који корисник"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Користи текст поље"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Било који домаћин"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Локални"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Овај сервер"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Користи табелу домаћина"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6371,7 +6438,7 @@ msgstr "Атрибути"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Додатно"
@@ -6474,12 +6541,12 @@ msgid "Toggle scratchboard"
msgstr "Укључи/искључи радну таблу"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Непознат језик: %1$s."
@@ -6558,7 +6625,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Изврши SQL упит(е) на бази %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Календар"
@@ -6593,10 +6660,6 @@ msgstr "Граничник"
msgid " Show this query here again "
msgstr "Прикажи поново овај упит"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Пошаљи"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Види само"
@@ -6605,7 +6668,7 @@ msgstr "Види само"
msgid "Location of the text file"
msgstr "Локација текстуалне датотеке"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "директоријум за слање веб сервера "
@@ -6655,19 +6718,19 @@ msgstr "ПОЧЕТАК СИРОВО"
msgid "END RAW"
msgstr "КРАЈ СИРОВО"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Наводник није затворен"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Неисправан иГ¤ентификатор"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Непознат стринг интерпункције"
@@ -6721,7 +6784,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Кључ"
@@ -6770,12 +6833,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Примарни"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Текст кључ"
@@ -6788,7 +6851,7 @@ msgstr ""
"Нема описа за ову трансформацију.
Молимо питајте аутора шта %s ради."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Погон складиштења"
@@ -6796,13 +6859,13 @@ msgstr "Погон складиштења"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Додај %s поља"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7023,82 +7086,82 @@ msgstr "У ZIP архиви нема датотека!"
msgid "Error in ZIP archive:"
msgstr "Грешка у ZIP архиви:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Опште особине релација"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Сортирање за MySQL везу"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Опште особине релација"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Верзија протокола"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Корисник"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL сет карактера"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Верзија MySQL клијента"
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "верзија PHP-a"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Прикажи информације о PHP-у"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin веб сајт"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибути"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Нема измена"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7110,7 +7173,7 @@ msgstr ""
"овим подешавањима, отворен је за упаде, и заиста треба да исправите овај "
"сигурносни ризик."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7119,7 +7182,7 @@ msgstr ""
"У PHP подешавањима Вам је укључена mbstring.func_overload опција. Ова опција "
"је некомпатибилна са phpMyAdmin и може довести до грешака у неким подацима!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7129,7 +7192,7 @@ msgstr ""
"скуп знакова. Без екстензије mbstring phpMyAdmin не може исправно да "
"раздваја стрингове и то може довести до неочекиваних резултата."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7137,24 +7200,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7166,14 +7229,14 @@ msgstr ""
"Додатне могућности за рад са повезаним табелама су искључене. Да бисте "
"сазнали зашто, кликните %sовде%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7182,7 +7245,7 @@ msgstr ""
"Верзија ваше PHP MySQL библиотеке %s се разликује од верзије вашег MySQL "
"сервера %s. Ово може довести до непредвидљивог понашања."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7204,14 +7267,14 @@ msgstr "Датотеке"
msgid "filter tables by name"
msgstr "назив табеле"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Направи табелу"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Изаберите базу"
@@ -7611,75 +7674,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Укључује све привилегије осим GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Дозвољава измену структура постојећих табела."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Дозвољава измену и одбацивање сачуваних рутина."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Дозвољава креирање нових база и табела."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Дозвољава прављење сачуваних рутина."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Дозвољава креирање нових табела."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Дозвољава креирање привремених табела.."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Дозволи креирање нових погледа."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Дозвољава брисање података."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Дозвољава одбацивање база и табела."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Дозвољава одбацивање табела."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Дозвољава извршавање сачуваних рутина."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Дозвољава увоз података и њихов извоз у датотеке."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7687,32 +7750,32 @@ msgstr ""
"привилегија."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Дозвољава креирање и брисање кључева."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Дозвољава уметање и замену података."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Дозвољава закључавање табела текућим процесима."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "Ограничава број нових конекција које корисник може та отвори на сат."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "Ограничава број упита које корисник може да упути серверу за сат."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7720,59 +7783,59 @@ msgstr ""
"Ограничава број команди које мењају табеле или базе које корисник може да "
"изврши на сат."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "Ограничава број истовремених конекција које корисник може да има."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Нема ефекта у овој верзији MySQL-a."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Даје право кориснику да пита где су главни/помоћни сервери."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Потребно због помоћних сервера за репликацију."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Дозвољава читање података."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Даје приступ комплетној листи база."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Дозвољава извршавање SHOW CREATE VIEW упита."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Дозвољава гашење сервера."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7783,13 +7846,13 @@ msgstr ""
"променљивих или прекидање процеса осталих корисника."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Дозвољава креирање и брисање кључева."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Дозвољава измену података."
@@ -7804,234 +7867,234 @@ msgctxt "None privileges"
msgid "None"
msgstr "нема"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Привилегије везане за табеле"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Напомена: MySQL имена привилегија морају да буду на енглеском "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глобалне привилегије"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Привилегије везане за базу"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Администрација"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глобалне привилегије"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Привилегије везане за базу"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ограничења ресурса"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Подаци о пријави"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Немој да мењаш лозинку"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Корисник није нађен."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Корисник %s већ постоји!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Додали сте новог корисника."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ажурирали сте привилегије за %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Забранили сте привилегије за %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Лозинка за %s је успешно промењена."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Бришем %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Ниједан корисник није одабран за брисање!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Поново учитавам привилегије"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Изабрани корисници су успешно обрисани."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Привилегије су успешно поново учитане."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Промени привилегије"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Забрани"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Било који"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Преглед корисника"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Омогући"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Додај новог корисника"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Уклони изабране кориснике"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Обустави све активне привилегије корисника и затим их обриши."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Одбаци базе које се зову исто као корисници."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Изабрани корисник није пронађен у табели привилегија."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Привилегије везане за колоне"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Додај привилегије на следећој бази"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Додај привилегије на следећој табели"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Промени информације о пријави / Копирај корисника"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Направи новог корисника са истим привилегијама и ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... сачувај старе."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... обриши старе из табела корисника."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... обустави све привилегије старог корисника и затим га обриши."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
" ... обриши старог из табеле корисника и затим поново учитај привилегије."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "База за корисника"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "нема"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Направи базу са истим именом и додај све привилегије"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Провери привилегије за базу "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Корисници који имају приступ "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "глобално"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Специфично за базу"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "џокер"
@@ -9160,7 +9223,7 @@ msgstr "Вредност сесије"
msgid "Global value"
msgstr "Глобална вредност"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9192,57 +9255,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Измене су сачуване"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Локални"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin документација"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Подаци"
@@ -9470,65 +9545,65 @@ msgstr "Изабрани корисници су успешно обрисани
msgid "Function"
msgstr "Функција"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr "Због њехове величине, поље
можда нећете моћи да измените"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Бинарни - не мењај"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Унеси као нови ред"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Приказ као SQL упит"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "и онда"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Назад на претходну страну"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Додај још један нови ред"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Врати се на ову страну"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Уреди следећи ред"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за "
"слободно померање"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9689,7 +9764,7 @@ msgstr "(\"PRIMARY\" мора бити име само прима
msgid "Add to index %s column(s)"
msgstr "Додај у кључ %s колона(е)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Број колона мора бити већи од нуле."
@@ -9715,105 +9790,105 @@ msgstr "Табела %s је копирана у %s."
msgid "The table name is empty!"
msgstr "Има табеле је празно!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Промени редослед у табели"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(по једном пољу)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Помери табелу у (база.табела):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Опције табеле"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Промени име табеле у "
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Копирај табелу у (база.табела):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Пређи на копирану табелу"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Радње на табели"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Дефрагментирај табелу"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Табела %s је освежена"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Освежи табелу (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Приказ података табеле"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "База не постоји"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Радње на табели"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Чешки"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Поправи табелу"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Провери референцијални интегритет:"
@@ -9821,39 +9896,39 @@ msgstr "Провери референцијални интегритет:"
msgid "Show tables"
msgstr "Прикажи табеле"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Заузеће"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Заузеће"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Ефективне"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Статистике реда"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Име"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "динамички"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Дужина реда"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Величина реда"
@@ -9939,57 +10014,57 @@ msgstr "нема"
msgid "Column %s has been dropped"
msgstr "Табела %s је одбачена"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Примарни кључ је управо додат %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Кључ је управо додат %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Прикажи информације о PHP-у"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Релациони поглед"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Предложи структуру табеле"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Додај %s поља"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "На крају табеле"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "На почетку табеле"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "После %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Направи кључ на %s колона"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -10017,109 +10092,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Врста упита"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Дозвољава уметање и замену података."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "База не постоји"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Подаци"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Тип извоза"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Персијски"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Направи релацију"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 0b0829685a..a1110b09c6 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -1,22 +1,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic \n"
"Language-Team: serbian_latin \n"
-"Language: sr@latin\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"
+"Language: sr@latin\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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Prikaži sve"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Pretraživanje"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Pretraživanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Ime ključa"
@@ -121,17 +121,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza %1$s je kreirana."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar baze:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentari tabele"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -139,7 +139,7 @@ msgstr "Komentari tabele"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolona"
@@ -150,11 +150,11 @@ msgstr "Kolona"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tip"
@@ -164,8 +164,8 @@ msgstr "Tip"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -175,7 +175,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Podrazumevano"
@@ -198,39 +198,40 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ne"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Da"
@@ -242,8 +243,8 @@ msgstr "Štampaj"
msgid "View dump (schema) of database"
msgstr "Prikaži sadržaj (shemu) baze"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
@@ -269,78 +270,78 @@ msgstr "Baza %s je preimenovana u %s"
msgid "Database %s has been copied to %s"
msgstr "Baza %s je prekopirana u %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Preimenuj bazu u"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Ukloni bazu"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza %s je odbačena."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Ukloni bazu i njen sadržaj"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiraj bazu u"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo struktura"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura i podaci"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podaci"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE pre kopiranja"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj AUTO_INCREMENT vrednost"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Dodaj ograničenja"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Prebaci se na kopiranu bazu"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Sortiranje"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -352,7 +353,7 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Uredi ili izvezi relacionu shemu"
@@ -360,17 +361,17 @@ msgstr "Uredi ili izvezi relacionu shemu"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabela"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Redova"
@@ -386,21 +387,21 @@ msgstr "se koristi"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Napravljeno"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Poslednja izmena"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Poslednja provera"
@@ -412,97 +413,90 @@ msgstr[0] "%s tabela"
msgstr[1] "%s tabele"
msgstr[2] "%s tabela"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Vaš SQL upit je uspešno izvršen"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Morate izabrati bar jednu kolonu za prikaz"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Predji na"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "vizuelni kreator"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sortiranje"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Rastući"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Opadajući"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Prikaži"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterijum"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "i"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "ili"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Promeni"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Dodaj/obriši kriterijum za polja"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Dodaj/obriši kolone"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Ažuriraj upit"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Koristi tabele"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL upit na bazi %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Izvrši SQL upit"
@@ -545,7 +539,7 @@ msgstr[2] "%s pogodaka unutar tabele %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Pregled"
@@ -555,14 +549,15 @@ msgstr "Pregled"
msgid "Delete the matches for the %s table?"
msgstr "Prikaz podataka tabele"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Obriši"
@@ -604,17 +599,17 @@ msgstr "Unutar kolone::"
msgid "No tables found in database"
msgstr "Tabele nisu pronađene u bazi."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabela %s je ispražnjena"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Pogled %s je odbačen"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabela %s je odbačena"
@@ -627,11 +622,11 @@ msgstr "Praćenje je aktivno."
msgid "Tracking is not active."
msgstr "Praćenje nije aktivno."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -655,22 +650,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "nijedno"
@@ -679,16 +674,16 @@ msgid "Check tables having overhead"
msgstr "Proveri tabele koje imaju prekoračenja"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Izvoz"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Za štampu"
@@ -700,28 +695,45 @@ msgstr "Isprazni"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Odbaci"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Proveri tabelu"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizuj tabelu"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Popravi tabelu"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analiziraj tabelu"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Baza ne postoji"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Zameni podatke u tabeli sa podacima iz datoteke"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Zameni podatke u tabeli sa podacima iz datoteke"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Rečnik podataka"
@@ -736,10 +748,10 @@ msgstr "Proveri tabelu"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Baza podataka"
@@ -748,37 +760,37 @@ msgstr "Baza podataka"
msgid "Last version"
msgstr "Napravi relaciju"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Napravi"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Akcija"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -787,11 +799,11 @@ msgstr ""
msgid "Versions"
msgstr "Persijski"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Samo struktura"
@@ -801,8 +813,8 @@ msgstr "Samo struktura"
msgid "Untracked tables"
msgstr "Proveri tabelu"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Proveri tabelu"
@@ -863,11 +875,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
-"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
+"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
+"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -934,6 +946,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Vaš SQL upit je uspešno izvršen"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -958,265 +977,283 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Procedure"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Dozvoljava umetanje i zamenu podataka."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Ova operacija može da potraje. Da li da nastavimo?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Nedostaje vrednost u obrascu!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Ovo nije broj!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Ime domaćina je prazno!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Ime korisnika nije uneto!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Lozinka je prazna!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Lozinke nisu identične!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Dodaj novog korisnika"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Napravi relaciju"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Ponovo učitavam privilegije"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Ukloni izabrane korisnike"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Otkaži"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Lokalni"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Procesi"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "U redu"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Preimenuj bazu u"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Remove database"
msgid "Reload Database"
msgstr "Ukloni bazu"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Kopiraj bazu u"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Karakter set"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Tabela mora imati barem jedno polje."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Napravi tabelu"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Pretraživanje"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL upit"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL upit"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Skladištenja"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Sačuvaj"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Sakrij"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL upit"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Izaberite referencirani ključ"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Izaberi strani ključ"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Molimo izaberite primarni ili jedinstveni ključ"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izaberi polja za prikaz"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Napravi lozinku"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Napravi"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1224,123 +1261,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Napravi relaciju"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Baza ne postoji"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "Podaci"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodna"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Sledeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "maj"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "avg"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1348,176 +1390,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sre"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1572,34 +1614,34 @@ msgid "No index defined!"
msgstr "Ključ nije definisan!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Ključevi"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Jedinstveni"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalnost"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Komentari"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
@@ -1621,25 +1663,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Baze"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Greška"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1647,7 +1689,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Nema odabranih redova"
msgstr[1] "Nema odabranih redova"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1740,8 +1782,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
@@ -1891,19 +1933,19 @@ msgstr "Tabele"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Podaci"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Ukupno"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Prekoračenje"
@@ -2000,16 +2042,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju."
@@ -2044,7 +2086,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentacija"
@@ -2194,7 +2236,7 @@ msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktura"
@@ -2229,7 +2271,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "direktorijum za slanje veb servera "
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktorijum koji ste izabrali za slanje nije dostupan"
@@ -2399,7 +2441,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Poništi"
@@ -2516,7 +2558,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2648,7 +2690,7 @@ msgid "Character set of the file"
msgstr "Karakter set datoteke:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2976,7 +3018,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Serveri"
@@ -3735,7 +3777,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4207,9 +4249,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Lozinka"
@@ -4229,8 +4271,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Korisničko ime:"
@@ -4346,7 +4388,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4494,7 +4536,7 @@ msgstr "Događaji"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Ime"
@@ -4517,8 +4559,8 @@ msgid "Designer"
msgstr "Dizajner"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegije"
@@ -4530,7 +4572,7 @@ msgstr "Rutine"
msgid "Return type"
msgstr "Povratni tip"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4551,23 +4593,23 @@ msgstr "Server ne odgovara"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Promeni lozinku"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Nema lozinke"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Ponovite unos"
@@ -4591,7 +4633,7 @@ msgid "Create"
msgstr "Napravi"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Nema privilegija"
@@ -4722,8 +4764,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
@@ -4746,7 +4788,7 @@ msgstr "Kompresija"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "nema"
@@ -4942,7 +4984,7 @@ msgstr "Sortiraj po ključu"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Opcije"
@@ -4982,65 +5024,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Tranformacije čitača"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Promeni"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operacije na rezultatima upita"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Pogled za štampu (sa punim tekstom)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Napravi relaciju"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Veza nije pronađena"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Informacije o verziji"
@@ -5445,8 +5487,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5566,9 +5608,9 @@ msgstr "Dostupni MIME-tipovi"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Domaćin"
@@ -5579,7 +5621,7 @@ msgid "Generation Time"
msgstr "Vreme kreiranja"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Verzija servera"
@@ -5922,7 +5964,30 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Pet"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Pošalji"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Nema izmena"
@@ -6227,8 +6292,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Ime korisnika"
@@ -6251,7 +6316,7 @@ msgstr "Promenljiva"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Vrednost"
@@ -6269,34 +6334,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Bilo koji korisnik"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Koristi tekst polje"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Bilo koji domaćin"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokalni"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ovaj server"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Koristi tabelu domaćina"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6360,7 +6425,7 @@ msgstr "Atributi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Dodatno"
@@ -6463,12 +6528,12 @@ msgid "Toggle scratchboard"
msgstr "Uključi/isključi radnu tablu"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznat jezik: %1$s."
@@ -6547,7 +6612,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izvrši SQL upit(e) na bazi %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Kalendar"
@@ -6582,10 +6647,6 @@ msgstr "Graničnik"
msgid " Show this query here again "
msgstr "Prikaži ponovo ovaj upit"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Pošalji"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Vidi samo"
@@ -6594,7 +6655,7 @@ msgstr "Vidi samo"
msgid "Location of the text file"
msgstr "Lokacija tekstualne datoteke"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "direktorijum za slanje veb servera "
@@ -6644,19 +6705,19 @@ msgstr "POČETAK SIROVO"
msgid "END RAW"
msgstr "KRAJ SIROVO"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Navodnik nije zatvoren"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Neispravan iG¤entifikator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Nepoznat string interpunkcije"
@@ -6710,7 +6771,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Ključ"
@@ -6759,12 +6820,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primarni"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Tekst ključ"
@@ -6777,7 +6838,7 @@ msgstr ""
"Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Pogon skladištenja"
@@ -6785,13 +6846,13 @@ msgstr "Pogon skladištenja"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Dodaj %s polja"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7013,82 +7074,82 @@ msgstr "U ZIP arhivi nema datoteka!"
msgid "Error in ZIP archive:"
msgstr "Greška u ZIP arhivi:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Opšte osobine relacija"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Sortiranje za MySQL vezu"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Opšte osobine relacija"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Verzija protokola"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Korisnik"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL set karaktera"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "Verzija MySQL klijenta"
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "verzija PHP-a"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Prikaži informacije o PHP-u"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin veb sajt"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributi"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Nema izmena"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7100,7 +7161,7 @@ msgstr ""
"ovim podešavanjima, otvoren je za upade, i zaista treba da ispravite ovaj "
"sigurnosni rizik."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7110,7 +7171,7 @@ msgstr ""
"opcija je nekompatibilna sa phpMyAdmin i može dovesti do grešaka u nekim "
"podacima!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7120,7 +7181,7 @@ msgstr ""
"skup znakova. Bez ekstenzije mbstring phpMyAdmin ne može ispravno da "
"razdvaja stringove i to može dovesti do neočekivanih rezultata."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7128,24 +7189,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7157,14 +7218,14 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7173,7 +7234,7 @@ msgstr ""
"Verzija vaše PHP MySQL biblioteke %s se razlikuje od verzije vašeg MySQL "
"servera %s. Ovo može dovesti do nepredvidljivog ponašanja."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7195,14 +7256,14 @@ msgstr "Datoteke"
msgid "filter tables by name"
msgstr "naziv tabele"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Napravi tabelu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Izaberite bazu"
@@ -7602,75 +7663,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Uključuje sve privilegije osim GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Dozvoljava izmenu struktura postojećih tabela."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Dozvoljava kreiranje novih baza i tabela."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Dozvoljava pravljenje sačuvanih rutina."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Dozvoljava kreiranje novih tabela."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Dozvoljava kreiranje privremenih tabela.."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Dozvoli kreiranje novih pogleda."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Dozvoljava brisanje podataka."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Dozvoljava odbacivanje baza i tabela."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Dozvoljava odbacivanje tabela."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Dozvoljava izvršavanje sačuvanih rutina."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7678,32 +7739,32 @@ msgstr ""
"privilegija."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Dozvoljava kreiranje i brisanje ključeva."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Dozvoljava umetanje i zamenu podataka."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7711,59 +7772,59 @@ msgstr ""
"Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da "
"izvrši na sat."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Nema efekta u ovoj verziji MySQL-a."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Potrebno zbog pomoćnih servera za replikaciju."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Dozvoljava čitanje podataka."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Daje pristup kompletnoj listi baza."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Dozvoljava gašenje servera."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7774,13 +7835,13 @@ msgstr ""
"promenljivih ili prekidanje procesa ostalih korisnika."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Dozvoljava kreiranje i brisanje ključeva."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Dozvoljava izmenu podataka."
@@ -7795,234 +7856,234 @@ msgctxt "None privileges"
msgid "None"
msgstr "nema"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Privilegije vezane za tabele"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globalne privilegije"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Privilegije vezane za bazu"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administracija"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globalne privilegije"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Privilegije vezane za bazu"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ograničenja resursa"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Podaci o prijavi"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Nemoj da menjaš lozinku"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Korisnik nije nađen."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Korisnik %s već postoji!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Dodali ste novog korisnika."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ažurirali ste privilegije za %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Zabranili ste privilegije za %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lozinka za %s je uspešno promenjena."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Brišem %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Nijedan korisnik nije odabran za brisanje!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Ponovo učitavam privilegije"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Izabrani korisnici su uspešno obrisani."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privilegije su uspešno ponovo učitane."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Promeni privilegije"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Zabrani"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Bilo koji"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Pregled korisnika"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Omogući"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Dodaj novog korisnika"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Ukloni izabrane korisnike"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Odbaci baze koje se zovu isto kao korisnici."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Izabrani korisnik nije pronađen u tabeli privilegija."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Privilegije vezane za kolone"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Dodaj privilegije na sledećoj bazi"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na sledećoj tabeli"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Promeni informacije o prijavi / Kopiraj korisnika"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Napravi novog korisnika sa istim privilegijama i ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... sačuvaj stare."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... obriši stare iz tabela korisnika."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
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:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Baza za korisnika"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "nema"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Proveri privilegije za bazu "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "globalno"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Specifično za bazu"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "džoker"
@@ -9154,7 +9215,7 @@ msgstr "Vrednost sesije"
msgid "Global value"
msgstr "Globalna vrednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9186,57 +9247,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Izmene su sačuvane"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Lokalni"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentacija"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Podaci"
@@ -9464,65 +9537,65 @@ msgstr "Izabrani korisnici su uspešno obrisani."
msgid "Function"
msgstr "Funkcija"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binarni - ne menjaj"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Unesi kao novi red"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
#, fuzzy
msgid "Show insert query"
msgstr "Prikaz kao SQL upit"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "i onda"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Nazad na prethodnu stranu"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Dodaj još jedan novi red"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Vrati se na ovu stranu"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Uredi sledeći red"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za "
"slobodno pomeranje"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -9683,7 +9756,7 @@ msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)"
msgid "Add to index %s column(s)"
msgstr "Dodaj u ključ %s kolona(e)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Broj kolona mora biti veći od nule."
@@ -9709,104 +9782,104 @@ msgstr "Tabela %s je kopirana u %s."
msgid "The table name is empty!"
msgstr "Ima tabele je prazno!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Promeni redosled u tabeli"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(po jednom polju)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Pomeri tabelu u (baza.tabela):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Opcije tabele"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Promeni ime tabele u "
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopiraj tabelu u (baza.tabela):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Pređi na kopiranu tabelu"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Radnje na tabeli"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentiraj tabelu"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabela %s je osvežena"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Osveži tabelu (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Prikaz podataka tabele"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Baza ne postoji"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Radnje na tabeli"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Češki"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Popravi"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Proveri referencijalni integritet:"
@@ -9814,39 +9887,39 @@ msgstr "Proveri referencijalni integritet:"
msgid "Show tables"
msgstr "Prikaži tabele"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Zauzeće"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Zauzeće"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Efektivne"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Statistike reda"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Ime"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamički"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Dužina reda"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Veličina reda"
@@ -9930,57 +10003,57 @@ msgstr "nema"
msgid "Column %s has been dropped"
msgstr "Tabela %s je odbačena"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Primarni ključ je upravo dodat %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Ključ je upravo dodat %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Prikaži informacije o PHP-u"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Relacioni pogled"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Predloži strukturu tabele"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "Dodaj %s polja"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Na kraju tabele"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Na početku tabele"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Posle %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Napravi ključ na %s kolona"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -10008,109 +10081,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Vrsta upita"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Dozvoljava umetanje i zamenu podataka."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Baza ne postoji"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Podaci"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Tip izvoza"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Persijski"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Napravi relaciju"
diff --git a/po/sv.po b/po/sv.po
index 996352ad1c..d1a74fcff8 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-02-16 21:42+0200\n"
"Last-Translator: \n"
"Language-Team: swedish \n"
-"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Visa alla"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Sök"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Sök"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kör"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Nyckel"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Databas %1$s har skapats."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Databaskommentar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabellkommentarer"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Tabellkommentarer"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Kolumn"
@@ -149,11 +149,11 @@ msgstr "Kolumn"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Typ"
@@ -163,8 +163,8 @@ msgstr "Typ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -174,7 +174,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Förvalt"
@@ -197,39 +197,40 @@ msgstr "Länkar till"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Nej"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ja"
@@ -241,8 +242,8 @@ msgstr "Skriv ut"
msgid "View dump (schema) of database"
msgstr "Visa SQL-satser för databasen"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Inga tabeller funna i databasen."
@@ -268,78 +269,78 @@ msgstr "Databas %s har döpts om till %s"
msgid "Database %s has been copied to %s"
msgstr "Databas %s har kopierats till %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Byt namn på databasen till"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Radera databasen"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databasen %s har tagits bort."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Tag bort databasen (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiera databas till"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Enbart struktur"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur och data"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Enbart data"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE före kopiering"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Lägg till %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Lägg till AUTO_INCREMENT-värde"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Lägg till restriktioner"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Byt till kopierad databas"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Kollationering"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -347,7 +348,7 @@ msgid ""
msgstr ""
"Konfigurationsschemat för phpMyAdmin har avaktiverats. %sVisa orsaken%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editera eller exportera relationsschema"
@@ -355,17 +356,17 @@ msgstr "Editera eller exportera relationsschema"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tabell"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Rader"
@@ -381,21 +382,21 @@ msgstr "används"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Skapande"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Senaste uppdatering"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Senaste kontroll"
@@ -406,97 +407,90 @@ msgid_plural "%s tables"
msgstr[0] "%s tabell"
msgstr[1] "%s tabeller"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Din SQL-fråga utfördes korrekt"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Byt till"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "grafisk modellerare"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sortera"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Stigande"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Fallande"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Visa"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriterier"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Infoga"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Och"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Ta bort"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Eller"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Ändra"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Lägg till / ta bort villkorsrader"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Lägg till / ta bort kolumner"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Uppdatera fråga"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Använd tabeller"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-fråga i databas %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Kör fråga"
@@ -537,7 +531,7 @@ msgstr[1] "%s träffar i tabell %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Visa"
@@ -546,14 +540,15 @@ msgstr "Visa"
msgid "Delete the matches for the %s table?"
msgstr "radera matchande för %s tabellen?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Radera"
@@ -592,17 +587,17 @@ msgstr "Inuti kolumnen:"
msgid "No tables found in database"
msgstr "Inga tabeller finns i databasen."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabellen %s har tömts"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "Vyn %s har tagits bort"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabellen %s har tagits bort"
@@ -615,11 +610,11 @@ msgstr "Spårning är aktiv."
msgid "Tracking is not active."
msgstr "Spårning är inte aktiv."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -643,22 +638,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s är standardlagringsmotorn på denna MySQL-server."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med markerade:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Markera alla"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Avmarkera alla"
@@ -667,16 +662,16 @@ msgid "Check tables having overhead"
msgstr "Markera ooptimerade"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Exportera"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Utskriftsvänlig visning"
@@ -688,28 +683,46 @@ msgstr "Töm"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Radera"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Kontrollera tabell"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimera tabell"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Reparera tabell"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Analysera tabell"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Gå till tabell"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Ersätt tabelldata med fil"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Ersätt tabelldata med fil"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Datalexikon"
@@ -723,10 +736,10 @@ msgstr "Spårade tabeller"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Databas"
@@ -734,36 +747,36 @@ msgstr "Databas"
msgid "Last version"
msgstr "Senaste versionen"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Skapad"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Uppdaterad"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Åtgärd"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Ta bort spårning för denna tabell"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktiv"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "inaktiv"
@@ -771,11 +784,11 @@ msgstr "inaktiv"
msgid "Versions"
msgstr "Versioner"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Spårningsrapport"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Ögonblicksbild på strukturen"
@@ -783,8 +796,8 @@ msgstr "Ögonblicksbild på strukturen"
msgid "Untracked tables"
msgstr "Ej spårade tabeller"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Spåra tabell"
@@ -843,8 +856,8 @@ msgstr "SQL-satserna har sparats till filen %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
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."
@@ -914,6 +927,13 @@ msgstr ""
"att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s "
"tidsbegränsningar."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Din SQL-fråga utfördes korrekt"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -938,223 +958,241 @@ msgstr "Klicka för att avmarkera"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" satserna är inaktiverade."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Vill du verkligen "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Du håller på att FÖRSTÖRA en hel databas!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Du håller på att FÖRSTÖRA en hel databas!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Du håller på att FÖRSTÖRA en hel databas!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Tar bort Händelse"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "Tar bort Procedur"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "Tar bort spårdata"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Tar bort Primär Nyckel/Index"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Denna operation kan ta lång tid. Försätt ändå?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Du håller på att inaktivera en BLOB-förvaringsplats!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "Vill du verkligen inaktivera alla BLOB-referenser för databas %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Värde saknas i formuläret!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Detta är inte ett nummer!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Värdnamnet är tomt!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Användarnamnet saknas!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Lösenordet saknas!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Lösenorden överensstämmer inte!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Lägg till en ny användare"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Skapa Användare"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Ladda om privilegier"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Tar bort markerade användare"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Stäng"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Avbryt"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Laddar"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Processa begäran"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "Fel i processbegäran"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Tar bort kolumn"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Lägger till primär nyckel"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Döp om databaser"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Ladda om databas"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Kopiera databas"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Ändra teckenuppsättning"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tabellen måste ha åtminstone ett fält."
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Skapa tabell"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Söker"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Göm sök-rutan"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Visa frågerutan"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Redigera"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Spara"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Dölj"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Dölj sökkriterier"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Visa sökkriterier"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorera"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Välj refererad nyckel"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Välj främmande nyckel"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Välj den primära nyckeln eller en unik nyckel"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Välj kolumn att visa"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Välj ett alternativ för kolumn"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Skapa lösenord"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generera"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Ändra lösenord"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Mera"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1164,254 +1202,260 @@ msgstr ""
"senaste versionen är %s, publicerad den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr "senaste stabila version:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Gå till daatabas"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Klart"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Föregående"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Nästa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Idag"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "januari"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "februari"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "mars"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "april"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "maj"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "juni"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "juli"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "augusti"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "september"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "oktober"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "november"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Söndag"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Måndag"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Tisdag"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Lördag"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Lör"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Sö"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Må"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "On"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Lö"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Vecka"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Timmar"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Minuter"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Sekunder"
@@ -1463,33 +1507,33 @@ msgid "No index defined!"
msgstr "Inga index är definierade!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Index"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unik"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Packad"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Kardinalitet"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ändra"
@@ -1513,32 +1557,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Databaserna"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fel"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rad påverkad."
msgstr[1] "%1$d rader påverkade."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rad borttagen."
msgstr[1] "%1$d rader borttagna."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1632,11 +1676,11 @@ msgstr "Välkommen till %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda "
-"%1$suppsättningsskript%2$s för att skapa denna."
+"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1"
+"$suppsättningsskript%2$s för att skapa denna."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1783,19 +1827,19 @@ msgstr "Tabeller"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Outnyttjat"
@@ -1883,16 +1927,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Ogiltig metod för verifiering angiven i konfiguration:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du bör uppgradera till %s %s eller senare."
@@ -1927,7 +1971,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentation"
@@ -2075,7 +2119,7 @@ msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Struktur"
@@ -2109,7 +2153,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Välj katalog att ladda upp till från web-server listningen %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås"
@@ -2269,7 +2313,7 @@ msgstr "Tillåt användare att anpassa detta värde"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Återställ"
@@ -2397,7 +2441,7 @@ msgid "Compress on the fly"
msgstr "Komprimera i farten"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfigurationsfil"
@@ -2526,7 +2570,7 @@ msgid "Character set of the file"
msgstr "Filens teckenuppsättning"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -2827,7 +2871,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Anpassa navigeringsramens utseende"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Servrar"
@@ -3595,7 +3639,7 @@ msgstr "SweKey konfigurationsfil"
msgid "Authentication method to use"
msgstr "Autentiseringsmetod att använda"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Autentiseringstyp"
@@ -4107,9 +4151,9 @@ msgstr "Kräver att SQL Validator är aktiverad"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Lösenord"
@@ -4133,8 +4177,8 @@ msgstr ""
"Om du har ett eget användarnamn, ange det här (default är [kbd]anonymous[/"
"kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Användarnamn"
@@ -4260,7 +4304,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Utförliga fleruttrycksfrågor"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Sök efter senaste version"
@@ -4409,7 +4453,7 @@ msgstr "Händelser"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Namn"
@@ -4432,8 +4476,8 @@ msgid "Designer"
msgstr "Designer"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegier"
@@ -4445,7 +4489,7 @@ msgstr "Rutiner"
msgid "Return type"
msgstr "Returtyp"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4466,23 +4510,23 @@ msgstr "Servern svarar inte"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Detaljer..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Byt lösenord"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Inget lösenord"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Skriv igen"
@@ -4504,7 +4548,7 @@ msgid "Create"
msgstr "Skapa"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Inga privilegier"
@@ -4608,8 +4652,8 @@ msgstr ", @TABLE@ blir tabellnamnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med "
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
@@ -4630,7 +4674,7 @@ msgstr "Komprimering:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Inget"
@@ -4807,7 +4851,7 @@ msgstr "Sortera efter nyckel"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Alternativ"
@@ -4840,62 +4884,62 @@ msgstr "Visa BLOB-innehåll"
msgid "Browser transformation"
msgstr "Webbläsaromvandling"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopiera"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Raden har raderats"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Döda"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "i fråga"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Visar rader"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Frågan tog %01.4f sek"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ändra"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Operationer för frågeresultat"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Utskriftsvänlig version (med fullständiga texter)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Visa diagram"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Skapa vy"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Länken hittades inte"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versionsinformation"
@@ -5334,11 +5378,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page"
-"%s."
+"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%"
+"s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -5434,9 +5478,9 @@ msgstr "Visa MIME-typer"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Värd"
@@ -5447,7 +5491,7 @@ msgid "Generation Time"
msgstr "Skapad"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Serverversion"
@@ -5805,7 +5849,32 @@ msgstr "Inget"
msgid "Convert to Kana"
msgstr "Konvertera till Kana"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Fr"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Sänd"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "Lägg till index"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Ingen förändring"
@@ -6116,8 +6185,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Användarnamn"
@@ -6138,7 +6207,7 @@ msgstr "Variabel"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Värde"
@@ -6158,34 +6227,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Lägg till användare för slav replikering"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Vilken användare som helst"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Använd textfältet"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Vilken värd som helst"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Denna värd"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Använd värdtabell"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6249,7 +6318,7 @@ msgstr "Attribut"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Extra"
@@ -6342,12 +6411,12 @@ msgid "Toggle scratchboard"
msgstr "Visa/dölj skisstavla"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Okänt språk: %1$s."
@@ -6420,7 +6489,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Kör SQL-fråga/frågor i databasen %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Rensa"
@@ -6452,10 +6521,6 @@ msgstr "Avgränsare"
msgid " Show this query here again "
msgstr " Visa frågan här igen "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Sänd"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Visa endast"
@@ -6464,7 +6529,7 @@ msgstr "Visa endast"
msgid "Location of the text file"
msgstr "Textfilens plats"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Uppladdningskatalog på webbserver"
@@ -6515,19 +6580,19 @@ msgstr "START RÅTEXT"
msgid "END RAW"
msgstr "SLUT RÅTEXT"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Automatiskt bifoga citattecken till slutet av frågan"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Oavslutat citat"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Ogiltig identifierare"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Okänd interpunktion i sträng"
@@ -6575,7 +6640,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Index"
@@ -6622,12 +6687,12 @@ msgid "As defined:"
msgstr "Som definierat:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Primär"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Fulltext"
@@ -6641,7 +6706,7 @@ msgstr ""
"fråga upphovsmannen vad %s gör."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Lagringsmotor"
@@ -6649,12 +6714,12 @@ msgstr "Lagringsmotor"
msgid "PARTITION definition"
msgstr "Partitionsdefinition"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Lägg till %s fält"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "Du måste lägga till åtminstone en kolumn."
@@ -6836,73 +6901,73 @@ msgstr "Inga filer hittades i ZIP-arkivet!"
msgid "Error in ZIP archive:"
msgstr "Fel i ZIP-arkiv:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Allmänna inställningar"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "Kollation för MySQL anslutning"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Inställningar för utseende"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Fler inställningar"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokollversion"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Användare"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL teckenuppsättning"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Webbserver"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL klientversion"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP-tillägg"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Visa PHP-information"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Wiki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin:s officiella hemsida"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Bidra"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Få support"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Lista över ändringar"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6914,7 +6979,7 @@ msgstr ""
"denna standard, är öppen för intrång, och du bör verkligen fixa detta "
"säkerhetshål genom att ange ett lösenord för användare 'root'."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6924,7 +6989,7 @@ msgstr ""
"alternativ är inkompatibelt med phpMyAdmin och kan leda till att data kan "
"skadas!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6934,7 +6999,7 @@ msgstr ""
"flerbitars teckenuppsättning. phpMyAdmin kan inte dela upp strängar korrekt "
"utan tillägget mbstring, vilket kan resultera i oväntade resultat."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6946,7 +7011,7 @@ msgstr ""
"giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning "
"upphöra att gälla tidigare än konfigurerat i phpMyAdmin."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -6955,11 +7020,11 @@ msgstr ""
"grund av detta kommer dina inloggningsuppgifter upphöra att gälla tidigare "
"än konfigurerat i phpMyAdmin."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -6969,7 +7034,7 @@ msgstr ""
"fortfarande i din phpMyAdmin-katalog. Du borde ta bort den när phpMyAdmin "
"har konfigurerats."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -6978,7 +7043,7 @@ msgstr ""
" phpMyAdmin konfigurationen är inte fullständigt konfigurerat, vissa utökade "
"funktioner har inaktiverats.. Föra att ta reda på varför klicka%shär%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -6988,16 +7053,16 @@ msgstr ""
"phpMyAdmin funktionalitet kommer saknas. Till exempel kommer "
"navigeringsramen inte uppdateras automatiskt."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version "
-"%s. Detta kan orsaka oförutsägbara beteenden."
+"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
+"s. Detta kan orsaka oförutsägbara beteenden."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7016,12 +7081,12 @@ msgstr "Filter"
msgid "filter tables by name"
msgstr "filtrera tabeller efter namn"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Skapa tabell"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Välj en databas"
@@ -7387,75 +7452,75 @@ msgid "Includes all privileges except GRANT."
msgstr "Inkluderar alla privilegier förutom GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Tillåter ändring av befintliga tabellers struktur."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Tillåter ändring och borttagning av lagrade rutiner."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Tillåter skapande av nya databaser och tabeller."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Tillåter skapande av lagrade rutiner."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Tillåter skapande av nya tabeller."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Tillåter skapande av temporära tabeller."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Tillåter skapande av nya vyer."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Tillåter borttagning av data."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Tillåter borttagning av databaser och tabeller."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Tillåter borttagning av tabeller."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
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:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Tillåter utförande av lagrade rutiner."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7463,32 +7528,32 @@ msgstr ""
"privilegiumtabellerna."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Tillåter skapande och borttagning av index."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Tillåter infogning och ersättning av data."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Tillåter låsning av tabeller för gällande tråd."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7496,59 +7561,59 @@ msgstr ""
"Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som "
"användaren kan utföra per timme."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Tillåter visning av processer för alla användare"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Har ingen effekt i denna version av MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Nödvändigt för replikeringsslavar."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Tillåter läsning av data."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Ger tillgång till den fullständiga databaslistan."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Tillåter avstängning av servern."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7559,12 +7624,12 @@ msgstr ""
"variabler eller döda andra användares trådar."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Tillåter skapande och borttagning av triggers"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Tillåter ändring av data."
@@ -7577,193 +7642,193 @@ msgctxt "None privileges"
msgid "None"
msgstr "Inget"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabellspecifika privilegier"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Notera: MySQL privilegie benämningar uttrycks på engelska"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Globala privilegier"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Databasspecifika privilegier"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administration"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Globala privilegier"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Databasspecifika privilegier"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resursbegränsningar"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Inloggningsinformation"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Ändra inte lösenordet"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Ingen användare hittades."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Användaren %s finns redan!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Du har lagt till en ny användare."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Du har uppdaterat privilegierna för %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Du har upphävt privilegierna för %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Lösenordet för %s har ändrats."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Tar bort %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Inga användare valda för borttagning!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Laddar om privilegierna"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "De valda användarna har tagits bort."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privilegierna har laddats om."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Ändra privilegier"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Upphäv"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Vem som helst"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Användaröversikt"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Beviilja"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Lägg till ny användare"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Ta bort valda användare"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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 privilegier direkt från MySQL:s "
"privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från "
"privilegierna som servern använder ifall manuella ändringar har gjorts. I "
"detta fall bör du %sladda om privilegierna%s innan du fortsätter."
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Den valda användaren kunde inte hittas i privilegietabellen."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Kolumnspecifika privilegier"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Lägg till privilegier till följande databas"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Lägg till privilegier till följande tabell"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Ändra inloggningsinformation / Kopiera användare"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Skapa en ny användare med samma privilegier och ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... behåll den gamla."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... ta bort den gamla från användartabellerna."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7771,42 +7836,42 @@ msgstr ""
" ... ta bort den gamla från användartabellerna och ladda om privilegierna "
"efteråt."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Databas för användare"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Inget"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Skapa databas med samma namn och tilldela alla privilegier"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Bevilja alla privilegier för databas "%s""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Användare som har tillgång till "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "databasspecifik"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "jokertecken"
@@ -8944,7 +9009,7 @@ msgstr "Sessionsvärde"
msgid "Global value"
msgstr "Globalt värde"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Ladda ner"
@@ -8983,55 +9048,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Osäker anslutning"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Konfigurations lagring"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Översikt"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Visa dolda meddelanden (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Det finns inga konfigurerade servrar"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Ny server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Förvalt språk"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "låt användaren välja"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- ingen -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Förvald server"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Radslut"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Visa"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Ladda"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin:s hemsida"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Donera"
@@ -9193,8 +9270,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - "
-"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
+"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %"
+"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
"tusentals användare, inklusive dig, är anslutna till"
@@ -9296,62 +9373,62 @@ msgstr "Tabell %1$s har ändrats"
msgid "Function"
msgstr "Funktion"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr "På grund av sin längd,
är denna kolumn kanske inte redigerbar"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "Ta bort referens till BLOB-förvaringsplats"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binär - ändra inte"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "Ladda upp till BLOB-förvaringsplats"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Lägg till som ny rad"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Infoga som ny rad och ignorera fel"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Visa insert fråga"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "och sedan"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Gå tillbaka till föregående sida"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Lägg till ytterligare en ny rad"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Gå tillbaka till denna sida"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Ändra nästa rad"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
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"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "Fortsätt inmatning med %s rader"
@@ -9509,7 +9586,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "Lägg till %s kolumn(er) till index"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Antalet kolumner måste vara större än noll."
@@ -9535,97 +9612,97 @@ msgstr "Tabellen %s har kopierats till %s."
msgid "The table name is empty!"
msgstr "Tabellnamnet är tomt!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Sortera om tabellen efter"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(var för sig)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Flytta tabellen till (databas.tabell):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tabellalternativ"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Döp om tabellen till"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Kopiera tabellen till (databas.tabell):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Byt till kopierad tabell"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tabellunderhåll"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Defragmentera tabell"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabellen %s har rensats"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Rensa tabellen (flush)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Ta bort data eller tabell"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Töm tabellen (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Ta bort tabellen (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Underhåll av partition"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Partition %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Analysera"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Kontrollera"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimera"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Återskapa"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Reparera"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Ta bort partitionering"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Kontrollera referensintegritet:"
@@ -9633,39 +9710,39 @@ msgstr "Kontrollera referensintegritet:"
msgid "Show tables"
msgstr "Visa tabeller"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Visa använt utrymme"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Användning"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Radstatistik"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Uppgifterna"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statisk"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dynamisk"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Radlängd"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Radstorlek"
@@ -9744,52 +9821,52 @@ msgstr "Inget"
msgid "Column %s has been dropped"
msgstr "Kolumnen %s har tagits bort"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "En primär nyckel har lagts till för %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Ett index har lagts till för %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Visa fler åtgärder"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Visa relationer"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Föreslå tabellstruktur"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Lägg till kolumn"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "I slutet av tabellen"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "I början av tabellen"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Efter %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "Skapa ett index för %s kolumn(er)"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "partitionerad"
@@ -9817,7 +9894,7 @@ msgstr "Spårning av %s.%s , version %s är aktiverad."
msgid "SQL statements executed."
msgstr "SQL-satser exekverade."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9825,101 +9902,131 @@ msgstr ""
"Du kan dumpa genom att skapa och använda en tillfällig databas. Se till att "
"du har behörighet att göra det."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Kommentera bort dessa två rader om du inte behöver dem."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL-satser exporteras. Kopiera dump eller verkställ."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Version %s ögonblicksbild (SQL-kod)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Spåra dessa datadefinitioners kommandon"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Samla fel"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Spåra dessa datahanterings kommandon"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Spårning av uppgifter"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "Visa %s med datum fån %s till %s av användare %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Ta bort spårning för denna tabell"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Inga databaser"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Datum"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Data definition redogörelse"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Data manipulation redogörelse"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL dump (filnedladdning)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL dump"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Denna alternativ kommer att ersätta din tabell och ingående data."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL exekvering"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "Exportera som %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Visa versioner"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Version"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "Avbryt spårning för %s.%s"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Deaktivera nu"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "Aktivera spårning för %s.%s"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Aktivera nu"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "Skapa version %s of %s.%s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Spåra dessa datadefinitioners kommandon"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Spåra dessa datahanterings kommandon"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Skapa version"
diff --git a/po/ta.po b/po/ta.po
index 1a24ad2928..e00240d11f 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -4,21 +4,21 @@
# FIRST AUTHOR , YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
-"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr ""
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr ""
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr ""
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "செல் "
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr ""
@@ -118,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr ""
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr ""
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,7 +136,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr ""
@@ -147,11 +147,11 @@ msgstr ""
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr ""
@@ -161,8 +161,8 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr ""
@@ -172,7 +172,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr ""
@@ -195,39 +195,40 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr ""
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr ""
@@ -239,8 +240,8 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr ""
@@ -266,85 +267,85 @@ msgstr ""
msgid "Database %s has been copied to %s"
msgstr ""
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr ""
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr ""
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr ""
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr ""
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr ""
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr ""
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr ""
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%sஐ சேர்க்க"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "தடைகளை சேர்க்க"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr ""
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -352,17 +353,17 @@ msgstr ""
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr ""
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr ""
@@ -378,21 +379,21 @@ msgstr ""
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr ""
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr ""
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr ""
@@ -403,101 +404,94 @@ msgid_plural "%s tables"
msgstr[0] ""
msgstr[1] ""
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr ""
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr ""
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr ""
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr ""
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr ""
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr ""
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr ""
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr ""
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr ""
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr ""
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr ""
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "விதி நிரைகளை சேர்க்க/ நீக்குக"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr ""
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr ""
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr ""
@@ -538,7 +532,7 @@ msgstr[1] ""
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
@@ -547,14 +541,15 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr ""
@@ -593,17 +588,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr ""
@@ -616,11 +611,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -644,22 +639,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@@ -668,16 +663,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr ""
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr ""
@@ -689,28 +684,42 @@ msgstr ""
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr ""
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Display table filter"
+msgid "Replace table prefix"
+msgstr "கருதிட்குள் சேர்க்க"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+msgid "Copy table with prefix"
+msgstr ""
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -724,10 +733,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr ""
@@ -735,36 +744,36 @@ msgstr ""
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "செயல்"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -772,11 +781,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -784,8 +793,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -842,8 +851,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -901,6 +910,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr ""
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -925,231 +941,245 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
-msgid "Deleting tracking data"
-msgstr ""
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
+msgid "Dropping Procedure"
msgstr ""
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr ""
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr ""
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr ""
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr ""
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr ""
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr ""
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr ""
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr ""
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr ""
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr ""
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "விலக்கு"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr ""
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr ""
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr ""
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have added a new user."
msgid "Table must have at least one column"
msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr ""
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr ""
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr ""
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Inline"
msgid "Inline Edit"
msgstr "உள்வரிசை"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr ""
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
msgid "Generate password"
msgstr ""
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr ""
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "திங்கள்"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1157,119 +1187,123 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
+#: js/messages.php:123
+msgid "up to date"
+msgstr ""
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr ""
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Jan"
msgid "January"
msgstr "தை"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "பங்குனி"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "சித்திரை"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "வைகாசி"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ஆணி"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ஆடி"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ஆவணி"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ஐப்பசி"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1277,174 +1311,174 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "மார்கழி"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ஞாயிறு"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "திங்கள்"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "செவ்வாய்"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "வெள்ளி"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "திங்கள்"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "செவ்வாய்"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "புதன்"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "வியாழன்"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "வெள்ளி"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "சனி"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "ஞாயிறு"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "திங்கள்"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "செவ்வாய்"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "புதன்"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "வியாழன்"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "வெள்ளி"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "சனி"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr ""
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr ""
@@ -1493,33 +1527,33 @@ msgid "No index defined!"
msgstr ""
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr ""
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr ""
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr ""
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1541,32 +1575,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது"
msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன"
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது"
msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1658,8 +1692,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s "
"பயன்படுத்தலாம்"
@@ -1806,19 +1840,19 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr ""
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr ""
@@ -1899,16 +1933,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr ""
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1943,7 +1977,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr ""
@@ -2091,7 +2125,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr ""
@@ -2125,7 +2159,7 @@ msgid "Select from the web server upload directory %s:"
msgstr ""
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
@@ -2283,7 +2317,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr ""
@@ -2397,7 +2431,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2522,7 +2556,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr ""
@@ -2821,7 +2855,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
@@ -3538,7 +3572,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -3988,9 +4022,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr ""
@@ -4010,8 +4044,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4124,7 +4158,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
@@ -4271,7 +4305,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr ""
@@ -4294,8 +4328,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr ""
@@ -4307,7 +4341,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4326,23 +4360,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr ""
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr ""
@@ -4364,7 +4398,7 @@ msgid "Create"
msgstr ""
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr ""
@@ -4468,8 +4502,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4487,7 +4521,7 @@ msgstr ""
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr ""
@@ -4650,7 +4684,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr ""
@@ -4683,64 +4717,64 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Add into comments"
msgid "Display chart"
msgstr "கருதிட்குள் சேர்க்க"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr ""
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr ""
@@ -5121,8 +5155,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5221,9 +5255,9 @@ msgstr ""
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr ""
@@ -5234,7 +5268,7 @@ msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr ""
@@ -5560,7 +5594,30 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "வெள்ளி"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr ""
@@ -5862,8 +5919,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr ""
@@ -5884,7 +5941,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr ""
@@ -5902,34 +5959,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -5991,7 +6048,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr ""
@@ -6084,12 +6141,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6162,7 +6219,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6194,10 +6251,6 @@ msgstr ""
msgid " Show this query here again "
msgstr ""
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr ""
@@ -6206,7 +6259,7 @@ msgstr ""
msgid "Location of the text file"
msgstr ""
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr ""
@@ -6245,19 +6298,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6297,7 +6350,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr ""
@@ -6338,12 +6391,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr ""
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr ""
@@ -6355,7 +6408,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6363,13 +6416,13 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s களத்தை சேர்க்க"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have added a new user."
msgid "You have to add at least one column."
@@ -6509,73 +6562,73 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr ""
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr ""
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr ""
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr ""
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr ""
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr ""
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr ""
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr ""
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6583,21 +6636,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6605,45 +6658,45 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6662,12 +6715,12 @@ msgstr ""
msgid "filter tables by name"
msgstr ""
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr ""
@@ -7027,163 +7080,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7191,12 +7244,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7209,225 +7262,225 @@ msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr ""
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr ""
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr ""
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்"
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr ""
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8428,7 +8481,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8460,55 +8513,65 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+msgid "Configuration saved."
+msgstr ""
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8731,60 +8794,60 @@ msgstr ""
msgid "Function"
msgstr ""
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr ""
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -8936,7 +8999,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -8962,97 +9025,97 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr ""
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr ""
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr ""
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr ""
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr ""
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr ""
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr ""
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr ""
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr ""
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr ""
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -9060,39 +9123,39 @@ msgstr ""
msgid "Show tables"
msgstr ""
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr ""
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr ""
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr ""
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr ""
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr ""
@@ -9169,54 +9232,54 @@ msgstr ""
msgid "Column %s has been dropped"
msgstr ""
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr ""
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr ""
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr ""
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "%s களத்தை சேர்க்க"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr ""
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s பின்"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9244,107 +9307,127 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+msgid "Query error"
+msgstr ""
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+msgid "No data"
+msgstr ""
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
@@ -9393,8 +9476,5 @@ msgstr ""
msgid "Rename view to"
msgstr ""
-#~ msgid "Display table filter"
-#~ msgstr "கருதிட்குள் சேர்க்க"
-
#~ msgid "AUTO_INCREMENT"
#~ msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க"
diff --git a/po/te.po b/po/te.po
index 9ab15b265a..6087e9a873 100644
--- a/po/te.po
+++ b/po/te.po
@@ -4,21 +4,21 @@
# FIRST AUTHOR , YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
-"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: te\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "అన్నీ చూపించు"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "శోధించు"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "శోధించు"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "వెళ్ళు"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr ""
@@ -119,18 +119,18 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "డేటాబేస్ వ్యాఖ్య:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "పట్టిక వ్యాఖ్యలు"
# మొదటి అనువాదము
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "పట్టిక వ్యాఖ్యలు"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Command"
msgid "Column"
@@ -151,11 +151,11 @@ msgstr "ఆజ్ఞ"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "రకం"
@@ -165,8 +165,8 @@ msgstr "రకం"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr ""
@@ -176,7 +176,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "అప్రమేయం"
@@ -199,39 +199,40 @@ msgstr ""
msgid "Comments"
msgstr "వ్యాఖ్యలు"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "కాదు"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "అవును"
@@ -243,8 +244,8 @@ msgstr "ముద్రించు"
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు"
@@ -271,87 +272,87 @@ msgstr ""
msgid "Database %s has been copied to %s"
msgstr "%s డేటాబేస్ %s డేటాబేస్ కు కాపీ అయింది"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి"
# మొదటి అనువాదము
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "ఆజ్ఞ"
# మొదటి అనువాదము
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "డేటాబేస్ తొలగించండి"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s డేటాబేస్ తుడిచివేయడమైనది"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "డేటాబేస్ ను తుడిచివేయి"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "నిర్మాణం మాత్రమే"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "నిర్మాణం, మరియు డేటా"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "డేటా మాత్రమే"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "కాపీ చేయబోయే ముందు డేటాబేస్ సృష్టించు"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s cErcu"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr ""
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr ""
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -359,17 +360,17 @@ msgstr ""
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "పట్టిక"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr ""
@@ -386,21 +387,21 @@ msgstr "వాడుకలో ఉన్నది"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "సృష్టి"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "చివరి మార్పు"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "చివరి చూపు"
@@ -411,100 +412,93 @@ msgid_plural "%s tables"
msgstr[0] "%s పట్టిక"
msgstr[1] "%s పట్టికలు"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "దీనికి మారు"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "దృశ్య కల్పకం"
# మొదటి అనువాదము
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "క్రమంలో పేర్చు"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "ఆరోహణ"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "అవరోహణ"
# మొదటి అనువాదము
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "చూపించు"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "లక్షణాలు"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "చొప్పించు"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "మరియు"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "తొలగించు"
# మొదటి అనువాదము
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "లేదా"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "మార్చు"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "లక్షణాల వరుసలను చేర్చు/తొలగించు"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "క్వెరీ ని మార్చు"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "పట్టికల్ని వాడు"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "క్వెరీ ని సమర్పించు"
@@ -545,7 +539,7 @@ msgstr[1] ""
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr ""
@@ -554,14 +548,15 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "తొలగించు"
@@ -601,17 +596,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr ""
@@ -624,11 +619,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
# మొదటి అనువాదము
@@ -654,22 +649,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr ""
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@@ -678,16 +673,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ఎగుమతి"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr ""
@@ -700,28 +695,42 @@ msgstr "ఖాళీ"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr ""
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr ""
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr ""
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr ""
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Display table filter"
+msgid "Replace table prefix"
+msgstr "పట్టిక వ్యాఖ్యలు"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+msgid "Copy table with prefix"
+msgstr ""
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr ""
@@ -736,10 +745,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "డేటాబేస్"
@@ -747,36 +756,36 @@ msgstr "డేటాబేస్"
msgid "Last version"
msgstr "చివరి కూర్పు"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "స్థితి"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "చర్య"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -784,11 +793,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -796,8 +805,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -854,8 +863,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -913,6 +922,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -937,248 +953,262 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
-msgid "Deleting tracking data"
-msgstr ""
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
+msgid "Dropping Procedure"
msgstr ""
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr ""
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr ""
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr ""
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "ఇది సంఖ్య కాదు!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "వాడుకరి పేరులో ఏమీ లేదు"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "సంకేతపదం ఖాళీగా ఉంది!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "సంకేతపదాలు సరిపోలలేదు!"
# మొదటి అనువాదము
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "కొత్త వాడుకరిని చేర్చు"
# మొదటి అనువాదము
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "వాడుకరిని సృష్టించు"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr ""
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "మూసివేయి"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "రద్దుచేయి"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "సరే"
# మొదటి అనువాదము
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Database"
msgid "Renaming Databases"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Database"
msgid "Reload Database"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Database"
msgid "Copying Database"
msgstr "డేటాబేస్"
# మొదటి అనువాదము
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "అక్షరమాల"
# మొదటి అనువాదము
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have added a new user."
msgid "Table must have at least one column"
msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు"
# మొదటి అనువాదము
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create a page"
msgid "Create Table"
msgstr "పుటని సృష్టించు"
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "శోధించు"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr ""
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "భద్రపరచు"
# మొదటి అనువాదము
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "దాచు"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
msgid "Generate password"
msgstr ""
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "సంకేతపదాన్ని మార్చు"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "మరిన్ని"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1186,257 +1216,261 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+msgid "up to date"
+msgstr ""
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr ""
# మొదటి అనువాదము
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "గత"
# మొదటి అనువాదము
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "తదుపరి"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "ఈరోజు"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "జనవరి"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "ఫిబ్రవరి"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "మార్చి"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "ఏప్రిల్"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "మే"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "జూన్"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "జూలై"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "ఆగస్ట్"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "సెప్టెంబర్"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "అక్టోబర్"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "నవంబర్"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "డిసెంబర్"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "మే"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "డిసెం"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "ఆదివారం"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "సోమవారం"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "మంగళవారం"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "బుధవారం"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "గురువారం"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "శుక్రవారం"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "శనివారం"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "శని"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "ఆ"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "సో"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "మం"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "బు"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "గు"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "శు"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "శ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "వారం"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "గంట"
# మొదటి అనువాదము
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "నిమిషం"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "క్షణం"
@@ -1485,33 +1519,33 @@ msgid "No index defined!"
msgstr ""
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr ""
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr ""
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr ""
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "వ్యాఖ్య"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "మార్చు"
@@ -1533,32 +1567,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr ""
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "పొరపాటు"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1651,8 +1685,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1800,19 +1834,19 @@ msgstr "పట్టికలు"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "మొత్తం"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr ""
@@ -1895,16 +1929,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr ""
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1940,7 +1974,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "పత్రావళి"
@@ -2090,7 +2124,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "నిర్మాణాకృతి"
@@ -2124,7 +2158,7 @@ msgid "Select from the web server upload directory %s:"
msgstr ""
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr ""
@@ -2284,7 +2318,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr ""
@@ -2398,7 +2432,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2523,7 +2557,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr ""
@@ -2822,7 +2856,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
@@ -3540,7 +3574,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -3993,9 +4027,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "సంకేతపదం"
@@ -4015,8 +4049,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "వాడుకరిపేరు"
@@ -4130,7 +4164,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4280,7 +4314,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "పేరు"
@@ -4303,8 +4337,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr ""
@@ -4316,7 +4350,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4335,23 +4369,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "వివరాలు..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "సంకేతపదాన్ని మార్చు"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "సంకేతపదం లేదు"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "మళ్ళీ టైపుచెయ్యండి"
@@ -4374,7 +4408,7 @@ msgid "Create"
msgstr "సృష్టించు"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr ""
@@ -4479,8 +4513,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4498,7 +4532,7 @@ msgstr ""
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "ఏమీలేదు"
@@ -4661,7 +4695,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "ఎంపికలు"
@@ -4694,68 +4728,68 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "మొత్తం"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
# మొదటి అనువాదము
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "మార్చుము"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "పట్టిక వ్యాఖ్యలు"
# మొదటి అనువాదము
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "సృష్టించు"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr ""
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "సంచిక సమాచారం"
@@ -5140,8 +5174,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5238,9 +5272,9 @@ msgstr ""
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr ""
@@ -5251,7 +5285,7 @@ msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr ""
@@ -5583,7 +5617,30 @@ msgstr "ఏమీలేదు"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "శు"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "దాఖలుచేయి"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr ""
@@ -5897,8 +5954,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "వాడుకరి పేరు"
@@ -5919,7 +5976,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "విలువ"
@@ -5938,34 +5995,34 @@ msgid "Add slave replication user"
msgstr ""
# మొదటి అనువాదము
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "ఏ వాడుకరి ఐనను"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "స్థానిక"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6027,7 +6084,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr ""
@@ -6119,12 +6176,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "తెలియని భాష: %1$s."
@@ -6197,7 +6254,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6231,10 +6288,6 @@ msgstr ""
msgid " Show this query here again "
msgstr ""
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "దాఖలుచేయి"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr ""
@@ -6243,7 +6296,7 @@ msgstr ""
msgid "Location of the text file"
msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రాంతం"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr ""
@@ -6282,19 +6335,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6334,7 +6387,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr ""
@@ -6375,12 +6428,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr ""
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "పూర్తిపాఠ్యం"
@@ -6392,7 +6445,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6401,14 +6454,14 @@ msgid "PARTITION definition"
msgstr ""
# మొదటి అనువాదము
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add into comments"
msgid "Add %s column(s)"
msgstr "స్పందనలకు చేర్చు"
# మొదటి అనువాదము
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have added a new user."
msgid "You have to add at least one column."
@@ -6555,73 +6608,73 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "సాధారణ అమరికలు"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "రూపురేఖల అమరికలు"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "మరిన్ని అమరికలు"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "వాడుకరి"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr ""
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr ""
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "వికీ"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr ""
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr ""
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "సహాయాన్ని పొందండి"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "మార్పుల జాబితా"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6629,21 +6682,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6651,45 +6704,45 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6709,12 +6762,12 @@ msgid "filter tables by name"
msgstr ""
# మొదటి అనువాదము
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "పట్టికను సృష్టించు"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr ""
@@ -7091,163 +7144,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7255,12 +7308,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7273,231 +7326,231 @@ msgctxt "None privileges"
msgid "None"
msgstr "ఏమీలేవు"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "పరిపాలన"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "ప్రవేశపు సమాచారం"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "వాడుకరి కనబడలేదు."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!"
# మొదటి అనువాదము
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr ""
# మొదటి అనువాదము
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "ఏదైనను"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
# మొదటి అనువాదము
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "క్రొత్త వాడుకరిని చేర్చు"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
# మొదటి అనువాదము
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... పాతదే ఉంచుము"
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "No"
msgctxt "Create none database for user"
msgid "None"
msgstr "కాదు"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8506,7 +8559,7 @@ msgid "Global value"
msgstr "సార్వత్రిక విలువ"
# మొదటి అనువాదము
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "దించుకొనుము"
@@ -8538,56 +8591,68 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Server configuration"
+msgid "Configuration saved."
+msgstr "సేవకి స్వరూపణం"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "అవలోకనం"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "అప్రమేయ భాష"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "వాడుకరిని ఎంచుకోనివ్వు"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- ఏమీలేదు -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
# మొదటి అనువాదము
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "వాక్యాంతము"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8810,63 +8875,63 @@ msgstr ""
msgid "Function"
msgstr ""
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr ""
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
# మొదటి అనువాదము
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "మరియు తరువాత"
# మొదటి అనువాదము
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "మునుపటి పుటకు వెళ్ళు"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr ""
# మొదటి అనువాదము
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "ఈ పుటకు తిరిగి వెళ్ళుము"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9018,7 +9083,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9044,98 +9109,98 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr ""
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr ""
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr ""
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "పట్టిక ఎంపికలు"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr ""
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr ""
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr ""
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr ""
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr ""
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr ""
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr ""
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
# మొదటి అనువాదము
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "విశదీకరించు"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -9143,39 +9208,39 @@ msgstr ""
msgid "Show tables"
msgstr ""
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "వాడుక"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr ""
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "వరుసల గణాంకాలు"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr ""
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr ""
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr ""
@@ -9252,56 +9317,56 @@ msgstr "ఏమీలేదు"
msgid "Column %s has been dropped"
msgstr ""
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr ""
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "మరిన్ని చర్యలను చూపించు"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr ""
# మొదటి అనువాదము
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add into comments"
msgid "Add column"
msgstr "స్పందనలకు చేర్చు"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr ""
# మొదటి అనువాదము
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s మార్లు తరువాత"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9329,107 +9394,129 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+msgid "Query error"
+msgstr ""
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+msgid "Delete tracking data row from report"
+msgstr ""
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "data"
+msgid "No data"
+msgstr "భోగట్టా"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "తేదీ"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
@@ -9499,6 +9586,3 @@ msgstr ""
#~ msgid "Stop"
#~ msgstr "ఆపుము"
-
-#~ msgid "Display table filter"
-#~ msgstr "పట్టిక వ్యాఖ్యలు"
diff --git a/po/th.po b/po/th.po
index 82182524ec..c23e106bff 100644
--- a/po/th.po
+++ b/po/th.po
@@ -1,20 +1,20 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "แสดงทั้งหมด"
@@ -43,9 +43,9 @@ msgstr ""
msgid "Search"
msgstr "ค้นหา"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -61,22 +61,22 @@ msgstr "ค้นหา"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "ลงมือ"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "ชื่อคีย์"
@@ -116,17 +116,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "หมายเหตุของฐานข้อมูล: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "หมายเหตุของตาราง"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -134,7 +134,7 @@ msgstr "หมายเหตุของตาราง"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -147,11 +147,11 @@ msgstr "ชื่อคอลัมน์"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "ชนิด"
@@ -161,8 +161,8 @@ msgstr "ชนิด"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "ว่างเปล่า (null)"
@@ -172,7 +172,7 @@ msgstr "ว่างเปล่า (null)"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "ค่าปริยาย"
@@ -195,39 +195,40 @@ msgstr "เชื่อมไปยัง"
msgid "Comments"
msgstr "หมายเหตุ"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "ไม่"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "ใช่"
@@ -239,8 +240,8 @@ msgstr "พิมพ์"
msgid "View dump (schema) of database"
msgstr "ดูโครงสร้างของฐานข้อมูล"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล"
@@ -266,85 +267,85 @@ msgstr "ฐานข้อมูล %s ได้ถูกเปลี่ยน
msgid "Database %s has been copied to %s"
msgstr "คัดลอกฐานข้อมูล %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "คำสั่ง"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "เอาฐานข้อมูลออก"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "โยนฐานข้อมูลทิ้ง"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "คัดลอกฐานข้อมูลเป็น"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "เฉพาะโครงสร้าง"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "ทั้งโครงสร้างและข้อมูล"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "เฉพาะข้อมูล"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "สร้างฐานข้อมูลก่อนคัดลอก"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "เพิ่ม %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "เพิ่มค่า AUTO_INCREMENT"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "เพิ่ม constraints"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "สลับไปยังฐานข้อมูลที่ถูกทำสำเนาไว้"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "การเรียงลำดับ"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ คลิก %shere%s เพื่อหาสาเหตุ"
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา"
@@ -352,17 +353,17 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "ตาราง "
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "แถว"
@@ -378,21 +379,21 @@ msgstr "ใช้อยู่"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "สร้างเมื่อ"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ"
@@ -404,101 +405,94 @@ msgid_plural "%s tables"
msgstr[0] "%s ตาราง"
msgstr[1] "%s ตาราง"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "สลับไปยัง"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "ตัวสร้างแบบวิชวล"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "เรียง"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "น้อยไปมาก"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "มากไปน้อย"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "แสดง"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "เงื่อนไข"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "เพิ่ม"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "และ"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "ลบ"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "หรือ"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "แก้ไข"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "เพิ่ม/ลบ แถว"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "ปรับปรุงคำค้น"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "ใช้ตาราง"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "คำค้นบนฐานข้อมูล %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
@@ -540,7 +534,7 @@ msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตารา
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "เปิดดู"
@@ -550,14 +544,15 @@ msgstr "เปิดดู"
msgid "Delete the matches for the %s table?"
msgstr "dump ตาราง"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "ลบ"
@@ -599,17 +594,17 @@ msgstr "ในคอลัมน์:"
msgid "No tables found in database"
msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว"
@@ -622,11 +617,11 @@ msgstr "การติดตามเริ่มทำงานแล้ว"
msgid "Tracking is not active."
msgstr "หยุดการติดตามแล้ว"
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -650,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "ทำกับที่เลือก:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "เลือกทั้งหมด"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "ไม่เลือกเลย"
@@ -674,16 +669,16 @@ msgid "Check tables having overhead"
msgstr "ตรวจสอบตารางที่มี overhead"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "ส่งออก"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "แสดง"
@@ -695,28 +690,44 @@ msgstr "ลบข้อมูล"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "โยนทิ้ง"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "ตรวจสอบตาราง"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "ปรับแต่งตาราง"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "ซ่อมแซมตาราง"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "วิเคราะห์ตาราง"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "เขียนทับด้วยข้อมูลจากไฟล์"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "เขียนทับด้วยข้อมูลจากไฟล์"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "พจนานุกรมข้อมูล"
@@ -730,10 +741,10 @@ msgstr "ตารางที่ถูกติดตาม"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "ฐานข้อมูล"
@@ -741,37 +752,37 @@ msgstr "ฐานข้อมูล"
msgid "Last version"
msgstr "เวอร์ชั่นล่าสุด"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "สร้าง"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "ปรับปรุงแล้ว"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "สถานะ"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "กระทำการ"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "ลบการติดตามตารางนี้"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "ใช้งานได้"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "ใช้งานไม่ได้"
@@ -779,11 +790,11 @@ msgstr "ใช้งานไม่ได้"
msgid "Versions"
msgstr "รุ่น"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "รายงานผลการติดตาม"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "โครงสร้างแบบคร่าวๆ"
@@ -791,8 +802,8 @@ msgstr "โครงสร้างแบบคร่าวๆ"
msgid "Untracked tables"
msgstr "เลิกติดตามตาราง"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "ติดตามตาราง"
@@ -849,8 +860,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -908,6 +919,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -932,260 +950,274 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้"
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "ต้องการจะ "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
+msgstr ""
+
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "โพรเซส"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "ค่าในแบบฟอร์มหายไป !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "ค่านี้ไม่ใช่ตัวเลข!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "ชื่อโฮสต์ยังว่างอยู่!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "ชื่อผู้ใช้ยังว่างอยู่!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "รหัสผ่านยังว่างอยู่!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "รหัสผ่านไม่ตรงกัน!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "เพิ่มผู้ใช้ใหม่"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "สิทธิแบบโกลบอล"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "ถอนผู้ใช้ที่เลือก"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "โลคอล"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "โพรเซส"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ตกลง"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
msgid "Copying Database"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "ชุดตัวอักษร"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "Table must have at least one column"
msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "เริ่มหน้าใหม่"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "ค้นหา"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "คำค้น SQL"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "คำค้น SQL"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr ""
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "บันทึก"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "คำค้น SQL"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "คำค้น SQL"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "ไม่สนใจ"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "เลือกฟิลด์ที่ต้องการแสดง"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "เปลี่ยนรหัสผ่าน"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
#, fuzzy
msgid "Generate"
msgstr "สร้างโดย"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "เปลี่ยนรหัสผ่าน"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "จ."
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1193,123 +1225,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "ไม่มีฐานข้อมูล"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ไม่มี"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "ก่อนหน้า"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "ต่อไป"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "รวม"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " ข้อมูลไบนารี "
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "มี.ค."
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "เม.ย."
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "พ.ค."
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "มิ.ย."
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ก.ค."
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ส.ค."
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ต.ค."
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "ม.ค."
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "ก.พ."
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "มี.ค."
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "เม.ย."
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1317,176 +1354,176 @@ msgid "May"
msgstr "พ.ค."
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "มิ.ย."
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "ก.ค."
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "ส.ค."
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "ก.ย."
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "ต.ค."
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "พ.ย."
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "ธ.ค."
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "อา."
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "จ."
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "อ."
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "ศ."
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "อา."
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "จ."
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "อ."
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "พ."
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "พฤ."
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "ศ."
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "ส."
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "อา."
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "จ."
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "อ."
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "พ."
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "พฤ."
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "ศ."
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "ส."
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ใช้อยู่"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1537,34 +1574,34 @@ msgid "No index defined!"
msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "ดัชนี"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "เอกลักษณ์"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Cardinality"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "หมายเหตุ"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "แก้ไข"
@@ -1586,25 +1623,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "ฐานข้อมูล"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "ผิดพลาด"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1612,7 +1649,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "ยังไม่ได้เลือกแถว"
msgstr[1] "ยังไม่ได้เลือกแถว"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1705,8 +1742,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1848,19 +1885,19 @@ msgstr "ตาราง"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "ข้อมูล"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "รวม"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "เกินความจำเป็น"
@@ -1951,16 +1988,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "เซิร์ฟเวอร์"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1995,7 +2032,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "เอกสารอ้างอิง"
@@ -2143,7 +2180,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "โครงสร้าง"
@@ -2178,7 +2215,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้"
@@ -2349,7 +2386,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "เริ่มใหม่"
@@ -2465,7 +2502,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2593,7 +2630,7 @@ msgid "Character set of the file"
msgstr "ชุดอักขระของไฟล์ (character set):"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "รูปแบบ"
@@ -2920,7 +2957,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "เซิร์ฟเวอร์"
@@ -3660,7 +3697,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4128,9 +4165,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "รหัสผ่าน"
@@ -4150,8 +4187,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "ชื่อผู้ใช้:"
@@ -4267,7 +4304,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4415,7 +4452,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "ชื่อ"
@@ -4438,8 +4475,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "สิทธิ"
@@ -4451,7 +4488,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4470,23 +4507,23 @@ msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอ
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "เปลี่ยนรหัสผ่าน"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "ไม่มีรหัสผ่าน"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "พิมพ์ใหม่"
@@ -4508,7 +4545,7 @@ msgid "Create"
msgstr "สร้าง"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "ไม่มีสิทธิ"
@@ -4632,8 +4669,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4653,7 +4690,7 @@ msgstr "บีบอัดข้อมูล"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "ไม่มี"
@@ -4834,7 +4871,7 @@ msgstr "เรียงโดยคีย์"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "กระบวนการ"
@@ -4876,65 +4913,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "การแปลงที่เรียกใช้ได้"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "ลบเรียบร้อยแล้ว"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "ฆ่าทิ้ง"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "ในคำค้น"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "แสดงระเบียนที่ "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "ทั้งหมด"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "คำค้นใช้เวลา %01.4f วินาที"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "เปลี่ยน"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "แสดงสกีมาของ PDF"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "ไม่พบลิงก์"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
#, fuzzy
msgid "Version information"
msgstr "ข้อมูลล็อกอิน"
@@ -5321,8 +5358,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5440,9 +5477,9 @@ msgstr "MIME-types ที่มีอยู่"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "โฮสต์"
@@ -5453,7 +5490,7 @@ msgid "Generation Time"
msgstr "เวลาในการสร้าง"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "รุ่นของเซิร์ฟเวอร์"
@@ -5790,7 +5827,32 @@ msgstr "ไม่มี"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "ศ."
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "ส่ง"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add new field"
+msgid "Add prefix"
+msgstr "เพิ่มฟิลด์ใหม่"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "ไม่มีการเปลี่ยนแปลง"
@@ -6097,8 +6159,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "ชื่อผู้ใช้"
@@ -6119,7 +6181,7 @@ msgstr "ตัวแปร"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "ค่า"
@@ -6138,34 +6200,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "ผู้ใช้ใดๆ"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "ใช้ช่องใส่ข้อความ (text field)"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "โฮสต์ใดๆ"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "โลคอล"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "โฮสต์นี้"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6229,7 +6291,7 @@ msgstr "แอตทริบิวต์"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "เพิ่มเติม"
@@ -6330,12 +6392,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6415,7 +6477,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "ปฏิทิน"
@@ -6450,10 +6512,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " แสดงคำค้นนี้อีกที "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "ส่ง"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "ดูอย่างเดียว"
@@ -6462,7 +6520,7 @@ msgstr "ดูอย่างเดียว"
msgid "Location of the text file"
msgstr "เลือกไฟล์ข้อความจาก"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
@@ -6511,19 +6569,19 @@ msgstr "เริ่มข้อมูลดิบ"
msgid "END RAW"
msgstr "สิ้นสุดข้อมูลดิบ"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "ไม่ได้ปิดเครื่องหมายคำพูด"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "ชื่อตัวแปรไม่ถูกต้อง"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "มีเครื่องหมายวรรคตอนที่ไม่รู้จัก"
@@ -6574,7 +6632,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "ดัชนี"
@@ -6621,12 +6679,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "ไพรมารี"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "ข้อความเต็ม (fulltext)"
@@ -6638,7 +6696,7 @@ msgid ""
msgstr "ไม่ปรากฏรายละเอียดสำหรับการแปลงนี้.
กรุณาสอบถามผู้เขียนว่า, %s ทำอะไร."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6646,12 +6704,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "เพิ่มฟิลด์ใหม่"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6801,82 +6859,82 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "ความสามารถด้านรีเลชันทั่วไป"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "ความสามารถด้านรีเลชันทั่วไป"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "ผู้ใช้"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "ชุดตัวอักษร (charset) ของ MySQL"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "รุ่นของ PHP"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "แสดงข้อมูลของ PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "โฮมเพจอย่างเป็นทางการของ phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "แอตทริบิวต์"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "ไม่มีการเปลี่ยนแปลง"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6887,21 +6945,21 @@ msgstr ""
"ซึ่งจะถูกใช้เป็นชื่อปริยายซึ่งมีสิทธิพิเศษ. เซิร์ฟเวอร์ MySQL ที่ทำงานด้วยค่าปริยายนี้ อาจถูกบุกรุกได้ "
"คุณควรจะแก้ไขรูรั่วอันนี้ทันที เพื่อความปลอดภัย"
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6909,24 +6967,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6937,21 +6995,21 @@ msgid ""
msgstr ""
"ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s"
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6972,13 +7030,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "เรียงค่าในตารางตาม"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "เริ่มหน้าใหม่"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "โปรดเลือกฐานข้อมูล"
@@ -7376,168 +7434,168 @@ msgid "Includes all privileges except GRANT."
msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
#, fuzzy
msgid "Allows altering and dropping stored routines."
msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
#, fuzzy
msgid "Allows creating stored routines."
msgstr "อนุญาตให้สร้างตารางใหม่."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "อนุญาตให้สร้างตารางใหม่."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "อนุญาตให้สร้างตารางชั่วคราว."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
#, fuzzy
msgid "Allows creating new views."
msgstr "อนุญาตให้สร้างตารางใหม่."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "อนุญาตให้ลบข้อมูล"
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง"
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "อนุญาตให้ทิ้งตาราง"
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์"
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่"
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล"
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน"
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง"
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
"จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง"
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, fuzzy
msgid "Limits the number of simultaneous connections the user may have."
msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "ไม่มีผลใน MySQL รุ่นนี้"
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์"
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "อนุญาตให้อ่านข้อมูลได้."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้"
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7545,13 +7603,13 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "อนุญาตให้เปลี่ยนข้อมูลได้."
@@ -7566,229 +7624,229 @@ msgctxt "None privileges"
msgid "None"
msgstr "ไม่มี"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "สิทธิเจาะจงเฉพาะตาราง"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "สิทธิแบบโกลบอล"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "การดูแลระบบ"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "สิทธิแบบโกลบอล"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "ขีดจำกัดของทรัพยากร"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "ข้อมูลล็อกอิน"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "ไม่พบผู้ใช้ใดๆ."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "มีผู้ใช้ %s อยู่แล้ว!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว"
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว"
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "คุณได้เพิกถอนสิทธิของ %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว"
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "กำลังลบ %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว"
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "แก้ไขสิทธิ"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "เพิกถอน"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "ใดๆ"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "ข้อมูลทั่วไปของผู้ใช้"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "มอบสิทธิ"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "เพิ่มผู้ใช้ใหม่"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "ถอนผู้ใช้ที่เลือก"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ"
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "สิทธิเฉพาะคอลัมน์"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "เพิ่มสิทธิของตารางต่อไปนี้"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... เก็บของเก่าไว้."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... ลบของเก่าทิ้งไปจากตารางผู้ใช้."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "ไม่มี"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "โกลบอล"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "เฉพาะฐานข้อมูล"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "ไวล์การ์ด"
@@ -8806,7 +8864,7 @@ msgstr "ค่าเซสชั่น"
msgid "Global value"
msgstr "ค่าแบบโกลบอล"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8838,57 +8896,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "โลคอล"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "เอกสารการใช้ phpMyAdmin"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9115,63 +9185,63 @@ msgstr "ลบผู้ใช้ที่เลือกไว้เรียบ
msgid "Function"
msgstr "ฟังก์ชั่น"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr "เนื่องจากความยาวของมัน
ฟิลด์นี้ ไม่อาจแก้ไขได้"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " ข้อมูลไบนารี - ห้ามแก้ไข "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "แทรกเป็นแถวใหม่"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ""
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "ส่งกลับ"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "แทรกระเบียนใหม่"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
#, fuzzy
msgid "Go back to this page"
msgstr "ส่งกลับ"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9327,7 +9397,7 @@ msgstr "(ชื่อของไพรมารีคีย์จะต้
msgid "Add to index %s column(s)"
msgstr "เพิ่มดัชนีคอลัมน์ %s"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9353,105 +9423,105 @@ msgstr "คัดลอกตาราง %s ไปเก็บในชื่
msgid "The table name is empty!"
msgstr "ชื่อตารางยังว่างอยู่!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "เรียงค่าในตารางตาม"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(เดี่ยว)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "ย้ายตารางไป (database.table):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "ตัวเลือกตาราง"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "เปลี่ยนชื่อตารางเป็น"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "การดูแลรักษาตาราง"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "จัดระเบียบตาราง"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "ล้างตาราง %s เรียบร้อยแล้ว"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "ล้างตาราง (flush)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "dump ตาราง"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "ไม่มีฐานข้อมูล"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "การดูแลรักษาตาราง"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "เช็ค"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "ซ่อมแซมตาราง"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:"
@@ -9459,39 +9529,39 @@ msgstr "ตรวจสอบความสมบูรณ์ของการ
msgid "Show tables"
msgstr "แสดงตาราง"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "เนื้อที่ที่ใช้"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "ใช้งาน"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "มีผล"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "สถิติของแถว"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "คำสั่ง"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "ไม่คงที่"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "ความยาวแถว"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " ขนาดแถว "
@@ -9577,56 +9647,56 @@ msgstr "ไม่มี"
msgid "Column %s has been dropped"
msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "ได้เพิ่มดัชนีแล้วใน %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "แสดงข้อมูลของ PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "มุมมองรีเลชัน"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "เสนอโครงสร้างตาราง"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
msgid "Add column"
msgstr "เพิ่มฟิลด์ใหม่"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "ที่จุดสุดท้ายของตาราง"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "ที่จุดเริ่มต้นของตาราง"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "หลัง %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "สร้างดัชนีโดยคอลัมน์ %s"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9654,109 +9724,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "ชนิดคำค้น"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "ลบการติดตามตารางนี้"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "ไม่มีฐานข้อมูล"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "ข้อมูล"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "รุ่นของ PHP"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "รุ่นของเซิร์ฟเวอร์"
@@ -9828,8 +9924,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere"
-#~ "%s"
+#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%"
+#~ "s"
#~ msgid "No tables"
#~ msgstr "ไม่มีตาราง"
diff --git a/po/tr.po b/po/tr.po
index 8e29d45702..e29e90a8b7 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-17 19:11+0200\n"
"Last-Translator: Burak Yavuz \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"
+"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Tümünü göster"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Ara"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Ara"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Git"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Anahtar adı"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Veritabanı %1$s oluşturuldu."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Veritabanı yorumu: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tablo yorumları"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Tablo yorumları"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Sütun"
@@ -149,11 +149,11 @@ msgstr "Sütun"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Türü"
@@ -163,8 +163,8 @@ msgstr "Türü"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Boş"
@@ -174,7 +174,7 @@ msgstr "Boş"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Varsayılan"
@@ -197,39 +197,40 @@ msgstr "Bağlantı verilen"
msgid "Comments"
msgstr "Yorumlar"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Hayır"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Evet"
@@ -241,8 +242,8 @@ msgstr "Yazdır"
msgid "View dump (schema) of database"
msgstr "Veritabanının dökümünü (şemasını) göster"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Veritabanında tablo bulunamadı."
@@ -268,78 +269,78 @@ msgstr "%s veritabanı %s olarak yeniden adlandırıldı"
msgid "Database %s has been copied to %s"
msgstr "%s veritabanı %s veritabanına kopyalandı"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Veritabanını şuna yeniden adlandır"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Komut"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Veritabanını kaldır"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s veritabanı kaldırıldı."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Veritabanını kaldır (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Veritabanını şuraya kopyala:"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Sadece yapı"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Yapı ve veri"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Sadece veri"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s ekle"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT değeri ekle"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Kısıtlamaları ekle"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Kopyalanmış veritabanına geç"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Karşılaştırma"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -348,7 +349,7 @@ msgstr ""
"phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek "
"için %sburaya%s tıklayın."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Bağlantılı şemayı dışa aktar veya düzenle"
@@ -356,17 +357,17 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tablo"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Satır"
@@ -382,21 +383,21 @@ msgstr "kullanımda"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Oluşturma"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Son güncellenme"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Son kontrol"
@@ -406,97 +407,90 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tablo"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL sorgunuz başarılı olarak çalıştırıldı"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Şuna değiştir"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "görsel yaratıcı"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sırala"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Küçükten Büyüğe"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Büyükten Küçüğe"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Göster"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriter"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Ve"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Veya"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Değiştir"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Kriter satırı Ekle/Sil"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Sütun Ekle/Sil"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Sorguyu Güncelle"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Tabloları kullan"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "%s veritabanındaki SQL sorgusu:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Sorguyu Gönder"
@@ -536,7 +530,7 @@ msgstr[0] "%s benzeşme, %s tablosu içinde"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Gözat"
@@ -545,14 +539,15 @@ msgstr "Gözat"
msgid "Delete the matches for the %s table?"
msgstr "%s tablosu için benzeşenler silinsin mi?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Sil"
@@ -590,17 +585,17 @@ msgstr "İç sütun:"
msgid "No tables found in database"
msgstr "Veritabanında tablolar bulunamadı"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "%s tablosu boşaltıldı"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "%s görünümü kaldırıldı"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "%s tablosu kaldırıldı"
@@ -613,11 +608,11 @@ msgstr "İzleme aktif."
msgid "Tracking is not active."
msgstr "İzleme aktif değil."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
@@ -642,22 +637,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Seçilileri:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Tümünü Seç"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Hiçbirini Seçme"
@@ -666,16 +661,16 @@ msgid "Check tables having overhead"
msgstr "Ek yükü olan tabloları kontrol et"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Dışa Aktar"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Baskı görünümü"
@@ -687,28 +682,46 @@ msgstr "Boşalt"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Kaldır"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Tabloyu kontrol et"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Tabloyu uyarla"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Tabloyu onar"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Tabloyu incele"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Tabloya git"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Tablo verisini dosya ile değiştir"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Tablo verisini dosya ile değiştir"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Veri sözlüğü"
@@ -722,10 +735,10 @@ msgstr "İzlenen tablolar"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Veritabanı"
@@ -733,36 +746,36 @@ msgstr "Veritabanı"
msgid "Last version"
msgstr "Son sürüm"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Oluşturuldu"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Güncellendi"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Durum"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Eylem"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Bu tabloyu izleme verisini sil"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "aktif"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "aktif değil"
@@ -770,11 +783,11 @@ msgstr "aktif değil"
msgid "Versions"
msgstr "Sürümler"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "İzleme raporu"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Yapı görüntüsü yakalama"
@@ -782,8 +795,8 @@ msgstr "Yapı görüntüsü yakalama"
msgid "Untracked tables"
msgstr "İzlenmeyen tablolar"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Tabloyu izle"
@@ -842,8 +855,8 @@ msgstr "Döküm, %s dosyasına kaydedildi."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
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."
@@ -913,6 +926,13 @@ msgstr ""
"sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı "
"biteremeyeceği anlamına gelir."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL sorgunuz başarılı olarak çalıştırıldı"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -938,482 +958,506 @@ msgstr "Seçimi kaldırmak için tıklayın"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Şu komut uygulansın "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "Olay Kaldırılıyor"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "İşlem Kaldırılıyor"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "İzleme verisi siliniyor"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "Birincil Anahtar/İndeks Kaldırılıyor"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Bu işlem uzun zaman alabilir. Yine de ilerlensin mi?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "BLOB Havuzunu ETKİSİZLEŞTİRMEK'tesiniz!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Tüm BLOB referanslarını %s veritabanı için etkisizleştirmek istediğinize "
"emin misiniz?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Formda eksik değer!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Bu bir sayı değil!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Anamakine adı boş!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Kullanıcı adı boş!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Parola boş!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Parolalar birbiriyle aynı değil!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Yeni Kullanıcı Ekle"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Kullanıcı Oluştur"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Yetkiler Yeniden Yükleniyor"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Seçili Kullanıcılar Kaldırılıyor"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Kapat"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "İptal"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "Yükleniyor"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "İstek İşleniyor"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "İstek İşlemede Hata"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "Sütun Kaldırılıyor"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "Birincil Anahtar Ekleniyor"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "TAMAM"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Veritabanı Yeniden Adlandırılıyor"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Veritabanını Yeniden Yükle"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Veritabanı Kopyalanıyor"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Karakter Grubu Değiştiriliyor"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Tablonun en az bir sütunu olmalı"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Tablo Oluştur"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Aranıyor"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Sorgu kutusunu gizle"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Sorgu kutusunu göster"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Sıralı Düzenleme"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Kaydet"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Gizle"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Arama kriterini gizle"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Arama kriterini göster"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Yoksay"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Kaynak gösterilen anahtarı seç"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Dış Anahtarı seç"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Göstermek için sütun seçin"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "Sütun için bir seçenek ekle "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "Parola üret"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Üret"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Parola Değiştir"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Daha Fazla"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
-"%s, %s tarihinde yayınlandı."
+"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
+"s, %s tarihinde yayınlandı."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", son sağlam sürüm:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Veritabanına git"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Bitti"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Önceki"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Sonraki"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Bugün"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Ocak"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Şubat"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Mart"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Nisan"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Mayıs"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Haziran"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Temmuz"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Ağustos"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Eylül"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Ekim"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Kasım"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Aralık"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Oca"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Şub"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Eyl"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Eki"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Ara"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Pazar"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Pazartesi"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Salı"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "Çarşamba"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "Perşembe"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "Cuma"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "Cumartesi"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Sal"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Cum"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Ctesi"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Pz"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Pt"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Ça"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Cu"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Ct"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "Hs"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "Saat"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Dakika"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Saniye"
@@ -1467,33 +1511,33 @@ msgid "No index defined!"
msgstr "Tanımlı indeks yok!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "İndeksler"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Benzersiz"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Paketlendi"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Önemlilik"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Yorum"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Düzenle"
@@ -1517,30 +1561,30 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Veritabanları"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Hata"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d satır etkilendi."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d satır silindi."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1631,8 +1675,8 @@ msgstr "%s'e Hoş Geldiniz"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz."
@@ -1784,19 +1828,19 @@ msgstr "Tablolar"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Veri"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Toplam"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Ek Yük"
@@ -1887,16 +1931,16 @@ msgstr ""
"geçirin."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Sunucu"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "Yapılandırma içinde geçersiz kimlik doğrulama yöntemi ayarı:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s veya sonrasına yükseltmelisiniz."
@@ -1931,7 +1975,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Belgeler"
@@ -2079,7 +2123,7 @@ msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakını
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Yapı"
@@ -2113,7 +2157,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Web sunucusu gönderme dizininden %s seçin:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
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"
@@ -2271,7 +2315,7 @@ msgstr "Bu değeri özelleştirmek için kullanıcılara izin ver"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Sıfırla"
@@ -2401,7 +2445,7 @@ msgid "Compress on the fly"
msgstr "Anında sıkıştır"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Yapılandırma dosyası"
@@ -2530,7 +2574,7 @@ msgid "Character set of the file"
msgstr "Dosyanın karakter grubu"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Biçim"
@@ -2831,7 +2875,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Rehber çerçevenin görünümünü özelleştirir"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Sunucular"
@@ -3608,7 +3652,7 @@ msgstr "SweKey yapılandırma dosyası"
msgid "Authentication method to use"
msgstr "Kullanmak için kimlik doğrulama yöntemi"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Kimlik doğrulama türü"
@@ -4134,9 +4178,9 @@ msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Parola"
@@ -4160,8 +4204,8 @@ msgstr ""
"Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]"
"isimsiz'dir[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Kullanıcı Adı"
@@ -4286,7 +4330,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Çoklu ifadeler için fazla bilgi"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Son sürümü kontrol et"
@@ -4438,7 +4482,7 @@ msgstr "Olaylar"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Adı"
@@ -4461,8 +4505,8 @@ msgid "Designer"
msgstr "Tasarımcı"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Yetkiler"
@@ -4474,7 +4518,7 @@ msgstr "Yordamlar"
msgid "Return type"
msgstr "Dönüş türü"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4497,23 +4541,23 @@ msgstr "Sunucu yanıt vermiyor"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Ayrıntılar..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Parola değiştir"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Parola yok"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Yeniden gir"
@@ -4535,7 +4579,7 @@ msgid "Create"
msgstr "Oluştur"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Yetkiniz yok"
@@ -4640,8 +4684,8 @@ msgstr ", @TABLE@ tablo adı olacaktır"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler "
@@ -4663,7 +4707,7 @@ msgstr "Sıkıştırma:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Yok"
@@ -4840,7 +4884,7 @@ msgstr "Anahtara göre sırala"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Seçenekler"
@@ -4873,62 +4917,62 @@ msgstr "BLOB içerikleri göster"
msgid "Browser transformation"
msgstr "Tarayıcı dönüşümü"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "Kopyala"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Satır silindi"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Sonlandır"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "sorgu içerisinde"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Gösterilen satırlar"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "toplam"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Sorgu %01.4f san. sürdü"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Değiştir"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Sorgu sonuçları işlemleri"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Baskı görünümü (tüm metinler ile)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "Çizelge göster"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "Görünüm oluştur"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Bağlantı bulunamadı"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Sürüm bilgisi"
@@ -5374,8 +5418,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi "
"bulunabilir."
@@ -5474,9 +5518,9 @@ msgstr "MIME türlerini göster"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Anamakine"
@@ -5487,7 +5531,7 @@ msgid "Generation Time"
msgstr "Üretim Zamanı"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Sunucu sürümü"
@@ -5847,7 +5891,32 @@ msgstr "Yok"
msgid "Convert to Kana"
msgstr "Kana'ya dönüştür"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Cu"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Gönder"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "İndeks ekle"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Değişiklik yok"
@@ -6158,8 +6227,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Kullanıcı Adı"
@@ -6180,7 +6249,7 @@ msgstr "Değişken"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Değer"
@@ -6200,34 +6269,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Slave kopya etme kullanıcısı ekle"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Herhangi kullanıcı"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Metin alanını kullan"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Herhangi anamakine"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Yerel"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Bu Anamakine"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Anamakine Tablosu kullan"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6291,7 +6360,7 @@ msgstr "Öznitelikler"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Ekstra"
@@ -6384,12 +6453,12 @@ msgid "Toggle scratchboard"
msgstr "Karalama panosunu değiştir"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Bilinmeyen dil: %1$s."
@@ -6462,7 +6531,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Temizle"
@@ -6494,10 +6563,6 @@ msgstr "Sınırlayıcı"
msgid " Show this query here again "
msgstr " Bu sorguyu burada tekrar göster "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Gönder"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Sadece göster"
@@ -6506,7 +6571,7 @@ msgstr "Sadece göster"
msgid "Location of the text file"
msgstr "Metin dosyasının yeri"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web sunucusu gönderme dizini"
@@ -6557,19 +6622,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "Otomatik olarak sorgunun sonuna ters işaret ekle"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Kapatılmamış tırnak"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Geçersiz Tanımlayıcı"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Bilinmeyen Noktalama İşareti Dizgisi"
@@ -6617,7 +6682,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "İndeks"
@@ -6664,12 +6729,12 @@ msgid "As defined:"
msgstr "Tanımlandığı gibi:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Birincil"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Tam metin"
@@ -6683,7 +6748,7 @@ msgstr ""
"sorun."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Depolama Motoru"
@@ -6691,12 +6756,12 @@ msgstr "Depolama Motoru"
msgid "PARTITION definition"
msgstr "PARTITION tanımı"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "%s sütun ekle"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "En az bir sütun eklemek zorundasınız."
@@ -6878,73 +6943,73 @@ msgstr "ZIP arşivi içinde hiç dosya bulunamadı!"
msgid "Error in ZIP archive:"
msgstr "ZIP arşivinde hata:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "Genel Ayarlar"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL bağlantı karşılaştırması"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "Görünüm Ayarları"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "Daha fazla ayarlar"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokol sürümü"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Kullanıcı"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL karakter grubu"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Web sunucusu"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL istemci sürümü"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP uzantısı"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP bilgisini göster"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Viki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Resmî phpMyAdmin Anasayfası"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "Katkıda bulun"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "Destek al"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "Değişikliklerin listesi"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6956,7 +7021,7 @@ msgstr ""
"açık ayarlarla çalışıyor ve bu güvenlik açığını gerçekten düzeltmeniz "
"gerekmektedir."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6966,7 +7031,7 @@ msgstr ""
"Bu seçenek phpMyAdmin ile uyumlusuzdur ve bazı veri bozulmalarına sebep "
"olabilir!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6976,7 +7041,7 @@ msgstr ""
"görünüyor. Mbstring uzantısı olmadan phpMyAdmin karakter dizgilerini doğru "
"olarak bölemez ve bu beklenmedik sonuçlar doğurabilir."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6988,7 +7053,7 @@ msgstr ""
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] düşük, bundan dolayı "
"oturum açmanızın süresi phpMyAdmin içinde yapılandırılmadıkça dolacaktır."
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -6997,13 +7062,13 @@ msgstr ""
"tanımlama bilgisi depolamadan düşük, bundan dolayı oturum açmanızın süresi "
"phpMyAdmin içinde yapılandırılmadıkça dolacaktır."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Yapılandırma dosyası için gizli bir parola ifadesi gerekiyor "
"(blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7013,7 +7078,7 @@ msgstr ""
"phpMyAdmin dizininiz içinde mevcut. Birkez phpMyAdmin yapılandırıldı mı bunu "
"kaldırmalısınız."
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -7022,7 +7087,7 @@ msgstr ""
"phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı. Nedenini "
"öğrenmek için %sburaya%s tıklayın."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7032,7 +7097,7 @@ msgstr ""
"phpMyAdmin işlevselliği eksik olacaktır. Örneğin rehber çerçeveyi otomatik "
"olarak yenilemeyecek."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7041,7 +7106,7 @@ msgstr ""
"PHP MySQL kütüphanenizin %s sürümü MySQL sunucunuzun %s sürümünden farklı. "
"Bu tarafsız davranışa sebep olabilir."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7062,12 +7127,12 @@ msgstr "Süzgeç"
msgid "filter tables by name"
msgstr "tabloları adına göre süz"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "Tablo oluştur"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Lütfen bir veritabanı seçin"
@@ -7434,77 +7499,77 @@ msgid "Includes all privileges except GRANT."
msgstr "GRANT hariç tüm yetkileri içerir."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Varolan tabloların yapısının değiştirilmesine izin verir."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Depolanan yordamların oluşturulmasına izin verir."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Yeni tabloların oluşturulmasına izin verir."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Geçici tablolara oluşturulmasına izin verir."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
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:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Yeni görünümlerin oluşturulmasına izin verir."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Veri silinmesine izin verir."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Veritabanları ve tabloların kaldırılmasına izin verir."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Tabloların kaldırılmasına izin verir."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Depolanan yordamların yürütülmesine izin verir."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
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:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -7512,33 +7577,33 @@ msgstr ""
"eklenmesine izin verir."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7546,61 +7611,61 @@ 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:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
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:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Bu MySQL sürümünde etkisi yoktur."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Kopya edilen slave'ler için gereklidir."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Veri okunmasına izin verir."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Bütün veritabanı listesine erişim verir."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Sunucunun kapatılmasına izin ver."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7611,12 +7676,12 @@ msgstr ""
"gibi pek çok yönetimsel işlemler için gereklidir."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Veri değiştirilmesine izin ver."
@@ -7629,188 +7694,188 @@ msgctxt "None privileges"
msgid "None"
msgstr "Yok"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Tabloya özgü yetkiler"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Not: MySQL yetki adları İngilizce olarak belirtilir "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Genel yetkiler"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Veritabanına özgü yetkiler"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Yönetim"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Genel yetkiler"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Veritabanına özgü yetkiler"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Kaynak sınırları"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Oturum Açma Bilgisi"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Parolayı değiştirme"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "Kullanıcı bulunamadı."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "%s kullanıcısı zaten var!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Yeni bir kullanıcı eklediniz."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "%s için yetkileri güncellediniz."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "%s için yetkileri geri aldınız"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, 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:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "%s siliniyor"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Silmek için kullanıcı seçilmedi!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Yetkiler yeniden yükleniyor"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Seçili kullanıcılar başarılı olarak silindi."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Yetkiler başarılı olarak yüklendi."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Yetkileri düzenle"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Geri al"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Herhangi"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Kullanıcı gözden geçirme"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Onayla"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Yeni Kullanıcı ekle"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Seçili kullanıcıları kaldır"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Seçili kullanıcı yetki tablosunda bulunamadı."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Sütuna özgü yetkiler"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Aşağıdaki veritabanına yetkileri ekle"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Aşağıdaki tabloya yetkileri ekle"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... eski olanı sakla."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... eski olanı kullanıcı tablolarından sil."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7818,42 +7883,42 @@ msgstr ""
" ... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden "
"yükle."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Kullanıcı için veritabanı"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "Yok"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" veritabanına erişimi olan kullanıcılar"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "genel"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Veritabanına özgü"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "joker"
@@ -8997,7 +9062,7 @@ msgstr "Oturum değeri"
msgid "Global value"
msgstr "Genel değer"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "İndir"
@@ -9038,55 +9103,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Güvensiz bağlantı"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "Yapılandırma depolama"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Genel Bakış"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Gizli mesajları göster (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Yapılandırılmış sunucular yok"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Yeni sunucu"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Varsayılan dil"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "kullanıcı seçsin"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- yok -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Varsayılan sunucu"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Satır sonu"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Görüntüle"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Yükle"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin ana sayfası"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Bağış"
@@ -9248,9 +9325,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- "
-"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi"
-"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
+"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %"
+"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. "
+"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
#: setup/lib/index.lib.php:268
@@ -9265,8 +9342,8 @@ msgstr ""
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
"anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya "
-"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. "
-"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
+"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %"
+"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"kbd] olarak ayarlayın."
#: setup/lib/index.lib.php:270
@@ -9349,62 +9426,62 @@ msgstr "Tablo %1$s başarılı olarak değiştirldi"
msgid "Function"
msgstr "İşlev"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " Uzunluğu nedeniyle,
bu sütun düzenlenebilir olmayabilir "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "BLOB Havuzu Referansını kaldır"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binari - düzenlemeyiniz"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "BLOB Havuzuna gönder"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Yeni satır olarak ekle"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Yeni satır olarak ekle ve hataları yoksay"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Ekleme sorgusunu göster"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ve sonra"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Önceki sayfaya geri dön"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Yeni başka bir satır ekle"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Bu sayfaya geri dön"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Sonraki satırı düzenle"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
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"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "%s satırla eklemeye devam et"
@@ -9561,7 +9638,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr "İndekse %s sütun ekle"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Sütun sayısı sıfırdan büyük olmalı."
@@ -9587,97 +9664,97 @@ msgstr "%s tablosu %s üzerine kopyalandı."
msgid "The table name is empty!"
msgstr "Tablo adı boş!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Tablo sıralamasını şuna göre değiştir"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(birer birer)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Tabloyu şuna (veritabanı.tablo) taşı:"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tablo seçenekleri"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Tabloyu yeniden şuna adlandır"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Tabloyu şuna (veritabanı.tablo) kopyala:"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Kopyalanmış tabloya geç"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tablo bakımı"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Tabloyu birleştir"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "%s tablosu temizlendi"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "Tabloyu temizle (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "Tabloyu veya veriyi sil"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "Tabloyu boşalt (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Tabloyu sil (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "Bölüm bakımı"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "Bölüm %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "İncele"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Seç"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Uyarla"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Yeniden Oluştur"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Onar"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Bölümlendirmeyi kaldır"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "İlgili bütünlük kontrolü:"
@@ -9685,39 +9762,39 @@ msgstr "İlgili bütünlük kontrolü:"
msgid "Show tables"
msgstr "Tabloları göster"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Alan kullanımı"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Kullanım"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Etkili"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Satır İstatistikleri"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "İfadeler"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "sabit"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "değişken"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Satır uzunluğu"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Satır boyutu "
@@ -9797,52 +9874,52 @@ msgstr "Yok"
msgid "Column %s has been dropped"
msgstr "Sütun %s kaldırıldı"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "%s üzerinde birincil anahtar eklendi"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "%s üzerinde bir indeks eklendi"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "Daha fazla eylem göster"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Bağlantı görünümü"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Tablo yapısı öner"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "Sütun ekle"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Tablonun Sonuna"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Tablonun Başına"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s sonrasına"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr " %s sütunda indeks oluştur"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "bölüme ayrıldı"
@@ -9870,7 +9947,7 @@ msgstr "%s.%s için izleniyor, sürüm %s aktif."
msgid "SQL statements executed."
msgstr "SQL ifadeleri çalıştırıldı."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -9879,103 +9956,133 @@ msgstr ""
"çalıştırabilirsiniz. Lütfen bunu yapmak için izinlerinizin olduğundan emin "
"olun."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
"SQL ifadeleri dışa aktarıldı. Lütfen dökümü kopyalayın ya da çalıştırın."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Bu veri tanımlama ifadelerini izle:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "Hataları toparla"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Bu veri işleme ifadelerini izle:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "İzleme ifadeleri"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
"%s tarihleriyle göster. %s ile %s arasını. %s %s kullanıcısı tarafından"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Bu tabloyu izleme verisini sil"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Veritabanı yok"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Tarih"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Veri tanımlama ifadesi"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Veri işleme ifadesi"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL dökümü (dosya indirme)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL dökümü"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL çalıştırma"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "%s olarak dışa aktar"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Sürümleri göster"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Sürüm"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "%s.%s için izlemeyi devre dışı bırak"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Hemen devre dışı bırak"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "%s.%s için izlemeyi aktif et"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Hemen aktif et"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "%s sürümünü, %s.%s için oluştur"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Bu veri tanımlama ifadelerini izle:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Bu veri işleme ifadelerini izle:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Sürüm oluştur"
diff --git a/po/tt.po b/po/tt.po
index ccab95bdd4..fe23c159eb 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: tatarish \n"
-"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: tt\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Barısın kürsät"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Ezläw"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Ezläw"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Äydä"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Tezeş adı"
@@ -118,17 +118,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s biremlege beterelde."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Biremlek açıqlaması:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tüşämä açıqlaması"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -136,7 +136,7 @@ msgstr "Tüşämä açıqlaması"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -149,11 +149,11 @@ msgstr "Alan iseme"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Töre"
@@ -163,8 +163,8 @@ msgstr "Töre"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Buş"
@@ -174,7 +174,7 @@ msgstr "Buş"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Töpcay"
@@ -197,39 +197,40 @@ msgstr "Bonı belän bäyläneş:"
msgid "Comments"
msgstr "Açıqlama"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Yuq"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Äye"
@@ -241,8 +242,8 @@ msgstr "Bastır"
msgid "View dump (schema) of database"
msgstr "Biremlek eçtälegen (tözeleşen) çığaru"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Bu biremlektä ber genä dä tüşämä yuq."
@@ -268,81 +269,81 @@ msgstr "\"%s\" biremlege \"%s\" itep ataldı"
msgid "Database %s has been copied to %s"
msgstr "Database %s has been copied to %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Biremlekne bolay atap quy"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Ämer"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Biremlekne bolay atap quy"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s biremlege beterelde."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Biremleklär yuq"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Biremlekne boña kübäyt"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tözeleşen genä"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Tözeleşen dä, eçtälegen dä"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Eçtälegen genä"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Kübäytü aldınnan CREATE DATABASE östise"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "%s östäw"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "\"AUTO_INCREMENT\" bäyäsen östise"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Çikläwlär östise"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Kübäytelgän biremlekkä küçäse"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Tezü cayı"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -354,7 +355,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:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -364,17 +365,17 @@ msgstr "Bäyläneşlär sxeme"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Tüşämä"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Kerem"
@@ -390,21 +391,21 @@ msgstr "totıla"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Yasalışı"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Soñğı yañartılu"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Soñğı tikşerü"
@@ -415,101 +416,94 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s tüşämä"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL-sorawıñ uñışlı eşkärtelde"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Tezü"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Artıp"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Kimep"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Kürsät"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Şart"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Tıq"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Wä"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Sal"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Yä"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Üzgärt"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Add/Delete Criteria Row"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Add/Delete Field Columns"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Sorawnı Yañart"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Tüşämä qullanıp"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "%s biremlegenä SQL-soraw:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Sorawnı Yulla"
@@ -550,7 +544,7 @@ msgstr[0] "%s kileşü bar, %s atlı tüşämädä"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Küzätü"
@@ -560,14 +554,15 @@ msgstr "Küzätü"
msgid "Delete the matches for the %s table?"
msgstr "Tüşämä eçtälegen çığaru"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Sal"
@@ -610,17 +605,17 @@ msgstr "Kiläse tüşämä eçendä:"
msgid "No tables found in database"
msgstr "Bu biremlektä ber genä dä tüşämä yuq."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "\"%s\" atlı tüşämä buşatıldı"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "\"%s\" atlı Qaraş beterelgän buldı"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "\"%s\" atlı tüşämä beterelde"
@@ -633,11 +628,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -662,22 +657,22 @@ 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:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Saylanğannı:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Saylap Beter"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Saylanunı Töşer"
@@ -686,16 +681,16 @@ msgid "Check tables having overhead"
msgstr "Check overheaded"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Export"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Bastıru küreneşe"
@@ -707,28 +702,45 @@ msgstr "Buşat"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Beter"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Tüşämä tikşerü"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimize table"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Tüşämä tözätü"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Tüşämä centekläw"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+msgid "Add prefix to table"
+msgstr "Biremleklär yuq"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Eçtälek Süzlege"
@@ -743,10 +755,10 @@ msgstr "Tüşämä tikşerü"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Biremlek"
@@ -755,37 +767,37 @@ msgstr "Biremlek"
msgid "Last version"
msgstr "Server söreme"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
#, fuzzy
msgid "Created"
msgstr "Yarat"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Torış"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Eş"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -794,11 +806,11 @@ msgstr ""
msgid "Versions"
msgstr "Farsíça"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
#, fuzzy
msgid "Structure snapshot"
msgstr "Tözeleşen genä"
@@ -808,8 +820,8 @@ msgstr "Tözeleşen genä"
msgid "Untracked tables"
msgstr "Tüşämä tikşerü"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "Tüşämä tikşerü"
@@ -870,8 +882,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -929,6 +941,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL-sorawıñ uñışlı eşkärtelde"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -953,263 +972,281 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" cönläläre sünderelgän."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Sin çınlap ta bonı eşlärgä teliseñme: "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "You are about to DESTROY a complete database!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "You are about to DESTROY a complete database!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "Proseslar"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "Eçtälek östäw/almaştıru xoquqı."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Bu eş ozaqqa suzıla ala. Barıber eşliseme?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Bu formıda bäyä kertelmi qalğan!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "San tügel bu!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Host adı buş!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Atama buş!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Sersüzeñ buş!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Sersüzlär berbersenä kileşmi!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Yaña qullanuçı östäw"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "Server söreme"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Bu xoquqlarnı yöklä"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Saylanğan qullanuçı beterü"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "Cirle"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Proseslar"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Biremlekne bolay atap quy"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Biremlekne bolay atap quy"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Biremlekne boña kübäyt"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Bilgelämä"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Töşämä alannarı sanı kimendä 1 bulırğa teş."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "Yaña Bit yaratu"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Ezläw"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL-soraw"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL-soraw"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Engine"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Saqla"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL-soraw"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL-soraw"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Qarama"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Kürsätäse Alan saylaw"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Sersüz Ürçetü"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Ürçet"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Sersüz üzgärtü"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dşm"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1217,123 +1254,128 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
msgid ", latest stable version:"
msgstr "Server söreme"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "Biremleklär yuq"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
msgid "Done"
msgstr "Eçtälek"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Uzğan"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Kiläse"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Tulayım"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Äpr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "May"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Yün"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Yül"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Ökt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Ğın"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Äpr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1341,176 +1383,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Yün"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Yül"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Ökt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nöy"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ykş"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dşm"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sşm"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cmğ"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Ykş"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Dşm"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Sşm"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Çrş"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Pnc"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Cmğ"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Şmb"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ykş"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dşm"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sşm"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çrş"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pnc"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cmğ"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şmb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "totıla"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1562,34 +1604,34 @@ msgid "No index defined!"
msgstr "Açqıç bilgelänmäde!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Tezeşlär"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Qabatsız"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Qabatlanu sanı"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "Açıqlama"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tözätü"
@@ -1611,25 +1653,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Biremleklär"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Xata"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1637,7 +1679,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Kertemnär sayladı"
msgstr[1] "Kertemnär sayladı"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1730,8 +1772,8 @@ msgstr "%s siña İsäñme di"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1879,19 +1921,19 @@ msgstr "Tüşämä"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Eçtälek"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Tulayım"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Overhead"
@@ -1987,16 +2029,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "You should upgrade to %s %s or later."
@@ -2031,7 +2073,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Qullanma"
@@ -2181,7 +2223,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Tözeleş"
@@ -2216,7 +2258,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "web-server'neñ yökläw törgäge"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
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í"
@@ -2386,7 +2428,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Awdar"
@@ -2502,7 +2544,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2634,7 +2676,7 @@ msgid "Character set of the file"
msgstr "Şul biremneñ bilgelämäse:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Tözeleş"
@@ -2962,7 +3004,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Serverlär"
@@ -3717,7 +3759,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4189,9 +4231,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Sersüz"
@@ -4211,8 +4253,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "Atama:"
@@ -4328,7 +4370,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4476,7 +4518,7 @@ msgstr "Cibärelde"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Adı"
@@ -4499,8 +4541,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Xoquqlar"
@@ -4512,7 +4554,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4531,23 +4573,23 @@ msgstr "Bu server endäşmi"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Sersüz üzgärtü"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Sersüzsez"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Qabatla"
@@ -4571,7 +4613,7 @@ msgid "Create"
msgstr "Yarat"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Xoquqsız"
@@ -4698,8 +4740,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4719,7 +4761,7 @@ msgstr "Qısu"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Buş"
@@ -4905,7 +4947,7 @@ msgstr "Qullanası tezeş"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "Eşkärtü"
@@ -4946,65 +4988,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Bu yazma salınğan buldı"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Üter"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "sorawda"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Yazma sanı:"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "tulayım"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Soraw eşkärtü %01.4f sek aldı"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Üzgärt"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Soraw qaytarmasın eşkärtü"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Bastıru küreneşe (bar mätennär belän)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF schema kürsätü"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "Server söreme"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Bäyläneş tabılmadı"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Söreme turında"
@@ -5405,8 +5447,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5526,9 +5568,9 @@ msgstr "Barlıq MIME-törlär"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Host"
@@ -5539,7 +5581,7 @@ msgid "Generation Time"
msgstr "Ürçäw Zamanı"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Server söreme"
@@ -5886,7 +5928,30 @@ msgstr "Buş"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Cmğ"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Künder"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Üzgäreşsez"
@@ -6190,8 +6255,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "İreşü iseme"
@@ -6212,7 +6277,7 @@ msgstr "Üzgärmä"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Bäyä"
@@ -6230,34 +6295,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Törle qullanuçı"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Bu mätennän"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Bar bulğan host"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Cirle"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Bu Sanaq"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Host Tüşämä eçennän"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6321,7 +6386,7 @@ msgstr "Üzençälek"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Östämä"
@@ -6424,12 +6489,12 @@ msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Belgesez tel: %1$s."
@@ -6508,7 +6573,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "%s biremlegendä eşlätäse SQL-soraw"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "Täqwim"
@@ -6543,10 +6608,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Bu sorawnı qabat kürsätäse"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Künder"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Kürep kenä"
@@ -6555,7 +6616,7 @@ msgstr "Kürep kenä"
msgid "Location of the text file"
msgstr "SQL-ämerlege belän birem yökläw"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "web-server'neñ yökläw törgäge"
@@ -6605,19 +6666,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Yabılmağan cäyä"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Tanıtması Yaraqsız"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
@@ -6627,8 +6688,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
-"%squllanmada%s uqıp bula."
+"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %"
+"squllanmada%s uqıp bula."
#: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107
msgid "Table seems to be empty!"
@@ -6670,7 +6731,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Tezeş"
@@ -6719,12 +6780,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Töp"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Tulımäten"
@@ -6738,7 +6799,7 @@ msgstr ""
"author, what %s does."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Saqlaw Isulı"
@@ -6746,13 +6807,13 @@ msgstr "Saqlaw Isulı"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s alan östäw"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6956,82 +7017,82 @@ msgstr "ZIP-tuplama eçendä biremnär tabılmadı!"
msgid "Error in ZIP archive:"
msgstr "ZIP-tuplama eçendä xata:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Bäyläneşlär buyınça töp mömkinleklär"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL-totaşunıñ tezü cayı"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Bäyläneşlär buyınça töp mömkinleklär"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokol söreme"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Qullanuçı"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL bilgelämäse"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL belän totaştırğıç söreme"
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP Söreme"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP turında"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin säxifäse"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Üzençälek"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Üzgäreşsez"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7042,7 +7103,7 @@ msgstr ""
"xisap saylanğan (sersüzsez \"root\"). MySQL-server şul töp xisap belän "
"açılğan da, andıy xällär iminlekneñ citdi tişege tip sanala."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7051,7 +7112,7 @@ msgstr ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause breaking of some data!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7061,7 +7122,7 @@ msgstr ""
"charset. Without mbstring extension phpMyAdmin is unable to split strings "
"correctly and it may result in unexpected results."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7069,25 +7130,25 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"The configuration file now needs a secret passphrase (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7099,21 +7160,21 @@ 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."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7135,13 +7196,13 @@ msgstr "Alan"
msgid "filter tables by name"
msgstr "tüşämä adı"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Yaña Bit yaratu"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Berär biremlek saylísı"
@@ -7539,107 +7600,107 @@ msgid "Includes all privileges except GRANT."
msgstr "GRANT'tan basqa bar xoquqlar da bar."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Allows altering and dropping stored routines."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Yaña biremlek/tüşämä yasaw xoquqı."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Saqlanğan funksílar qorırğa birä."
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Yaña tüşämä yasaw xoquqı."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Waqıtlı tüşämä yasaw xoquqı."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
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:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Yaña qaraş qorırğa birä."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Eçtälek beterü xoquqı."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Biremlek/tüşämä beterü xoquqı."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Tüşämä beterü xoquqı."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Eçke funksílar eşlätterergä birä."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Allows importing data from and exporting data into files."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
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:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Açqıçlarnı qoru/beterü xoquqı."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Eçtälek östäw/almaştıru xoquqı."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Allows locking tables for the current thread."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7647,59 +7708,59 @@ msgstr ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
#, 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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Has no effect in this MySQL version."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Needed for the replication slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Eçtälekne uqu xoquqı."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Gives access to the complete list of databases."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "SHOW CREATE VIEW sorawların eşläterlek itä."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Serverne tuqtatu xoquqı."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7710,13 +7771,13 @@ msgstr ""
"killing threads of other users."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "Açqıçlarnı qoru/beterü xoquqı."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Eçtälek üzgärtü xoquqı."
@@ -7731,192 +7792,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "Buş"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Berär tüşämä öçen xoquqlar"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Beläse: MySQL'da xoquq adı İnglizçä kertelä!"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Töp xoquq"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Berär biremlekkä qağılışlı xoquqlar"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "İdärä"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Töp xoquq"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Berär biremlekkä qağılışlı xoquqlar"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resurs çikläwläre"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Kereş Turında"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Sersüzen üzgärtäse tügel"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Qullanuçı yuq."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "\"%s\" atlı qullanuçı bar inde!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Yana qullanuçı östälände."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "You have updated the privileges for %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "You have revoked the privileges for %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "\"%s\" Beterü"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Beteräse qullanuçılar saylanmağan!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Bu xoquqlarnı yöklä"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Bu xoquqlarnı yökläw uñışlı uzdı."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Xoquqlar Üzgärtü"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Töşer"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Törle"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Qullanuçılar tezmäse"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Xoquq"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Yaña qullanuçı östäw"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Saylanğan qullanuçı beterü"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Qullanuçı xoquqların awdarıp beteräse."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Berär bağana öçen xoquqlar"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Kiläse biremlek öçen xoquqlar östäw"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Kiläse tüşämä öçen xoquqlar östäw"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Change Login Information / Copy User"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Create a new user with the same privileges and ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... keep the old one."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... delete the old one from the user tables."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7924,44 +7985,44 @@ msgstr ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Qullanuçı biremlege"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Buş"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\" biremlege öçen xoquqlar tikşerü."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "ğömümi"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "berär biremlekkä qağılışlı"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "almaşbilge"
@@ -8992,7 +9053,7 @@ msgstr "Sessi bäyäse"
msgid "Global value"
msgstr "Töp bäyä"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -9024,57 +9085,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Üzgärtülär saqlandı"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "Cirle"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin qullanması"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
#, fuzzy
msgid "Donate"
msgstr "Eçtälek"
@@ -9303,64 +9376,64 @@ msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
msgid "Function"
msgstr "Funksí"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Because of its length,
this field might not be editable"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Binar - üzgärtmäslek"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Yaña yazma kert tä"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr ", şunnan soñ"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Aldağı bitkä qaytu"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Tağın ber yazma östäw"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Bu bitkä kire qaytası"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Kiläse yazma üzgärtü"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
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"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9520,7 +9593,7 @@ msgstr "(Töp açqıçnıñ ğına adı \"PRIMARY\" bulırğa tieş.table):"
msgstr "Boña küçerü (biremlek.tüşämä):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Tüşämä köyläneşe"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Tüşämä adın üzgärtü"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Boña kübäyt (biremlek.tüşämä):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Kübäytelgän tüşämägä küçäse"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Tüşämä eşkärtü"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Tüşämä kisäklären berläşterü"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "\"%s\" atlı tüşämä awdarıldı"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Tüşäwne awdar (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Tüşämä eçtälegen çığaru"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Biremleklär yuq"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "Tüşämä eşkärtü"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "Çexçä"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "Tüşämä tözätü"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Bäyläneşlärne döreslekkä tikşerü:"
@@ -9652,39 +9725,39 @@ msgstr "Bäyläneşlärne döreslekkä tikşerü:"
msgid "Show tables"
msgstr "Tüşämälär kürsätäse"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Totılğan Alan"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Totılu"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Uñışlı"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Kerem Nöfüse"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Cömlä"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "üzgärüçän"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Kerem ozınlığı"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Kerem olılığı"
@@ -9769,57 +9842,57 @@ msgstr "Buş"
msgid "Column %s has been dropped"
msgstr "\"%s\" atlı tüşämä beterelde"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "\"%s\" öçen töp açqıç qorıldı"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "\"%s\" öçen ber açqıç qorıldı"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "PHP turında"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Bäyläneşkä küzätü"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Tüşämä tözeleşenä küzätü"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "%s alan östäw"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Tüşämä azağına"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Tüşämä Başına"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "%s artınnan"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "%s alannan tezeş yaratu"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9847,109 +9920,135 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Soraw töre"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Allows inserting and replacing data."
+msgid "Delete tracking data row from report"
+msgstr "Eçtälek östäw/almaştıru xoquqı."
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Biremleklär yuq"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "Eçtälek"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, fuzzy, php-format
msgid "Export as %s"
msgstr "Çığaru ısulı"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
#, fuzzy
msgid "Version"
msgstr "Farsíça"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
#, fuzzy
msgid "Create version"
msgstr "Server söreme"
diff --git a/po/ug.po b/po/ug.po
index f6172f5357..0814870544 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -4,21 +4,21 @@
# FIRST AUTHOR , YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: \n"
"Language-Team: Uyghur \n"
-"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ug\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "ھەممىسىنى كۆرسىتىش"
@@ -47,9 +47,9 @@ msgstr ""
msgid "Search"
msgstr "ئىزدەش"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -65,22 +65,22 @@ msgstr "ئىزدەش"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "ئىجرا قىلىش"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "قىممەت ئىسمى"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ساندان ئىزاھاتى:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "جەدۋەل ئىزاھى"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "جەدۋەل ئىزاھى"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "سۆزلەم"
@@ -149,11 +149,11 @@ msgstr "سۆزلەم"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "تۈرى"
@@ -163,8 +163,8 @@ msgstr "تۈرى"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "بوش"
@@ -174,7 +174,7 @@ msgstr "بوش"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "ئەندىز"
@@ -197,39 +197,40 @@ msgstr "ئۇلانما"
msgid "Comments"
msgstr "ئىزاھلار"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "يوق"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "بولدى"
@@ -241,8 +242,8 @@ msgstr "يازدۇر"
msgid "View dump (schema) of database"
msgstr "ساندان قالدۇقىنى كۆرسىتىش"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "سانداندا جەدۋەل يوق"
@@ -268,87 +269,87 @@ msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s"
msgid "Database %s has been copied to %s"
msgstr "ساندان %s غا كۆچۈرۈلدى %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "بۇيرۇق"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "ساندان %s ئۆچۈرۈلدى."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "كۆچۈرۈلگەن ساندان"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "كۆچۈرۈلگەن ساندان"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "تۈزىلىشىنىلا"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "تۈزۈلىشى ۋە ئۇچۇر"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "ئۇچۇرنىلا"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "قوشۇلغىنى %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT قوشۇش"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "مەجبۇرى قوشۇش"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "تاسقاش"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
-"%sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
+"sبۇ يەرنى كۆرۈڭ%s."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Display PDF schema"
msgid "Edit or export relational schema"
@@ -358,17 +359,17 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "جەدۋەل"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "سەپ سانى"
@@ -384,21 +385,21 @@ msgstr "ئىشلىتىلمەكتە"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "قۇرۇش"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "ئاخىرقى يېڭلىنىش"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "ئاخىرقى تەكشۈرۈش"
@@ -408,97 +409,90 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s جەدۋەل"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "بۇنى بىجىرىش ئۈچۈن مەزمۇن تاللانغان بولۇشى كېرەك"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "تۈرلەش"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "ئارتىش"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "كېمىيىش"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "كۆرسىتىش"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "شەرت"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "قىستۇرۇش"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "ۋە"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "ئۆچۈرۈش"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "ياكى"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "ئۆزگەرتىش"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "رەت قوشۇش\\ئۆچۈرۈش"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "يېڭلاش"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "جەدۋەللەرنى ئىشلىتىش"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL ئىجرا بولۋاتقان ساندان %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "تاپشۇرۇش"
@@ -538,7 +532,7 @@ msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "كۆزەت"
@@ -548,14 +542,15 @@ msgstr "كۆزەت"
msgid "Delete the matches for the %s table?"
msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "ئۆچۈرۈش"
@@ -595,17 +590,17 @@ msgstr "ئىچىدىكى سۆزلەم:"
msgid "No tables found in database"
msgstr "سانداندا جەدۋەل يوق"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr " %s جەدۋەل تازىلاندى"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "%s كۆرۈنمە ئۆچۈرۈلدى"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "%s جەدىۋەل ئۆچۈرۈلدى"
@@ -618,11 +613,11 @@ msgstr "ئاكتىپ ئىزلاش"
msgid "Tracking is not active."
msgstr "ئىزلاش ئاكتىپ ئەمەس"
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -646,22 +641,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "تاللانغىنى:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "ھەممىنى تاللاش"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "تاللاشنى بىكار قىلىش"
@@ -670,16 +665,16 @@ msgid "Check tables having overhead"
msgstr "مەزمۇن بارلارنى تاللاش"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "چىقىرىش"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "بېسىپ كۆرسىتىش"
@@ -691,28 +686,42 @@ msgstr "تازىلاش"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "ئۆچۈرۈش"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "جەدۋەل تەكشۈرۈش"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "جەدۋەلنى ئەلالاش"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "جەدۋەلنى ئوڭشاش"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "جەدۋەل تەھلىلى"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Repair table"
+msgid "Replace table prefix"
+msgstr "جەدۋەلنى ئوڭشاش"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+msgid "Copy table with prefix"
+msgstr ""
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "مەلۇمات لۇغىتى"
@@ -726,10 +735,10 @@ msgstr "ئىزلانغان جەدۋەل"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "ساندان"
@@ -737,36 +746,36 @@ msgstr "ساندان"
msgid "Last version"
msgstr "ېيڭى نەشىر"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "قۇرۇش"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "يېڭلاش"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "ھالەت"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "ئامال"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "پائال"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "پائالسىز"
@@ -774,11 +783,11 @@ msgstr "پائالسىز"
msgid "Versions"
msgstr "نەشىر"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "ئىزلاش خاتىرىسى"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "تۈزۈلمە رەسىمى"
@@ -786,8 +795,8 @@ msgstr "تۈزۈلمە رەسىمى"
msgid "Untracked tables"
msgstr "ئىزلانمىغان جەدۋەللەر"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "جەدۋەل ئىزلاش"
@@ -846,8 +855,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ."
@@ -916,6 +925,13 @@ 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:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -940,250 +956,268 @@ msgstr "بىر چىكىپ بىكار قىلىڭ"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "راستىنلا ئجرا قىلىمسىز"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "ساندان تولۇق ئۆچۈرۈلدى!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "ساندان تولۇق ئۆچۈرۈلدى!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "ساندان تولۇق ئۆچۈرۈلدى!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr ""
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Deleting tracking data"
msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "سىز BLOB ئامبىرنى توقتاتماقچى!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "سىز ھەقىقەتەن %s ئۈستىدىكى BLOB ئىقتىدارىنى تاقىماقچىمۇ؟"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "بۇ ئورۇننىڭ قىممىتى تولدۇرۇلمىغان !"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "سان كىرگۈزىڭ !"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "مۇلازىمىتېر ئىسمى بوشكەن!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "قوللانغۇچى ئىسمى بوشكەن!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "پارول بوشكەن!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr ""
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create version"
msgid "Create User"
msgstr "نەشىرنى قۇىماق"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "No Privileges"
msgid "Reloading Privileges"
msgstr "ھوقۇقسىز"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr ""
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "بىكار قىلىش"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr ""
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr ""
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Remove database"
msgid "Reload Database"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "كۆچۈرۈلگەن ساندان"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr ""
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one column."
msgid "Table must have at least one column"
msgstr "سانلىق مەلۇمات جەدېۋىلىدە ئەڭ ئاز بولغاندا بىر خەت بۇلۇش كىرەك"
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create"
msgid "Create Table"
msgstr "قۇرۇش"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "ئىزدەش"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "SQL query"
msgid "Show query box"
msgstr "SQL سورىقى"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Inline"
msgid "Inline Edit"
msgstr " ئىچكى بىرلىشىش"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr ""
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr ""
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "SQL query"
msgid "Show search criteria"
msgstr "SQL سورىقى"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "سېرتقى ئۇلىنىشنى تاللاش"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "تاشقى ئاچقۇق قىممىتى"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ"
# column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "سۆزلەمنى كۆرسەتمەسلىك"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
msgid "Generate password"
msgstr "پارول ھاسىللاش"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "ھاسىللاش"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "پارولنى ئۆزگەرتىش"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "تېخىمۇ كۆپ"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1191,256 +1225,263 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "ېيڭى نەشىر"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "%s table"
+#| msgid_plural "%s tables"
+msgid "up to date"
+msgstr "%s جەدۋەل"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "تامام"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "ئالدىنقى ئاي"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "كىيىنكى ئاي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "بۈگۈن"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "قەھرىتان"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "ھۇت"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "نورۇز"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "ئۈمىد"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "باھار"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "6-ئاي"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "7-ئاي"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "8-ئاي"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "9-ئاي"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "10-ئاي"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "11-ئاي"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "12-ئاي"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "1-ئاي"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "2-ئاي"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "3-ئاي"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "4-ئاي"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "5-ئاي"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "6-ئاي"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "چىللە"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "تومۇز"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "مىزان"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "ئوغۇز"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "ئوغلاق"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "كۆنەك"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "يەكشەنبە"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "دۈشەنبە"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "سەيشەنبە"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "چارشەنبە"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "پەيشەنبە"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "جۈمە"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "شەنبە"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "دۈشەنبە"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "سەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "چارشەنبە"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "پەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "جۈمە"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "شەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "يەكشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "دۈشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "سەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "چارشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "پەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "جۈمە"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "شەنبە"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "ھەپتە"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "سائەت"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "مىنۇت"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "سېكنۇت"
@@ -1493,33 +1534,33 @@ msgid "No index defined!"
msgstr "index قىممىتى بەلگىلەنمىگەن!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "تېزىسلار"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "بىردىنبىر"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "ئىخچام"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "تۈپ سان"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "ئىزاھات"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تەھىرلەش"
@@ -1543,30 +1584,30 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "ساندان"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "خاتالىق"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d row affected."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d row deleted."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1657,11 +1698,11 @@ msgstr "%s خۇش كەلدىڭىز"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1806,19 +1847,19 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "سانلىق مەلۇمات"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "يىغىندىسى"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "ئېغىر يۈك"
@@ -1904,16 +1945,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "مۇلازىمىتېر"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ."
@@ -1948,7 +1989,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "قوللانما"
@@ -2096,7 +2137,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "تۈزۈلىشى"
@@ -2131,7 +2172,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى"
@@ -2293,7 +2334,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr ""
@@ -2407,7 +2448,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2532,7 +2573,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "فورماتلاش"
@@ -2842,7 +2883,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
@@ -3565,7 +3606,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4017,9 +4058,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "پارول"
@@ -4039,8 +4080,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4155,7 +4196,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4310,7 +4351,7 @@ msgstr "ھادىسە"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "ئىسمى"
@@ -4333,8 +4374,8 @@ msgid "Designer"
msgstr "لايىھەلىگۈچ"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "ھۇقۇقى"
@@ -4346,7 +4387,7 @@ msgstr "دائىملىق"
msgid "Return type"
msgstr "تۈرگە قايتىش"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4367,23 +4408,23 @@ msgstr "مۇلازىمىتېردا ئىنكاس يوق"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "تەپسىلاتلار..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "پارولنى ئۆزگەرتىش"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "پارول يوق"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "قايتا كىرگۈزىش"
@@ -4405,7 +4446,7 @@ msgid "Create"
msgstr "قۇرۇش"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "ھوقۇقسىز"
@@ -4528,8 +4569,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4549,7 +4590,7 @@ msgstr "پىرىسلاش"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "يوق"
@@ -4732,7 +4773,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr ""
@@ -4767,66 +4808,66 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "ئۇمۇمىي"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "ئۆزگەرتتىش"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "بېسىپ چىقىرش كۈرۈلمىسى"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "جەدۋەل ئىزاھى"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "نەشىرنى قۇىماق"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "ئۇلىنىشنى تاپالمىدى"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr ""
@@ -5209,8 +5250,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5327,9 +5368,9 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "ئاساسىي ماشىنا"
@@ -5340,7 +5381,7 @@ msgid "Generation Time"
msgstr "قۇرۇلغان ۋاقتى"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "مۇلازىمىتىر نۇسخىسى"
@@ -5674,7 +5715,30 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "جۈمە"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr ""
@@ -5976,8 +6040,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr ""
@@ -5998,7 +6062,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr ""
@@ -6016,34 +6080,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6107,7 +6171,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr ""
@@ -6204,12 +6268,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6286,7 +6350,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6318,10 +6382,6 @@ msgstr ""
msgid " Show this query here again "
msgstr ""
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr ""
@@ -6330,7 +6390,7 @@ msgstr ""
msgid "Location of the text file"
msgstr "يىزىق ھۆججەتنىڭ ئورنى"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
@@ -6369,19 +6429,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6421,7 +6481,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr ""
@@ -6462,12 +6522,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr ""
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr ""
@@ -6479,7 +6539,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6487,12 +6547,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr ""
@@ -6634,77 +6694,77 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "ئاساسىي ئالاقە ۋاريانتلىرى"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "ئاساسىي ئالاقە ۋاريانتلىرى"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr ""
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr ""
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr ""
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr ""
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr ""
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr ""
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6712,21 +6772,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6734,24 +6794,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
@@ -6760,24 +6820,24 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
-"%sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
+"sبۇ يەرنى كۆرۈڭ%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6798,12 +6858,12 @@ msgstr ""
msgid "filter tables by name"
msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr ""
@@ -7183,163 +7243,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7347,12 +7407,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7365,225 +7425,225 @@ msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr ""
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr ""
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr ""
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr ""
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8590,7 +8650,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8622,55 +8682,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "ئۆزگەرتىشلەر ساقلاندى"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8893,60 +8965,60 @@ msgstr ""
msgid "Function"
msgstr ""
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr ""
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "كېيىن"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9108,7 +9180,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9134,101 +9206,101 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr ""
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr ""
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr ""
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr ""
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr ""
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr ""
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr ""
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr ""
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Drop the database (DROP)"
msgid "Delete the table (DROP)"
msgstr "كۆچۈرۈلگەن ساندان"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -9236,39 +9308,39 @@ msgstr ""
msgid "Show tables"
msgstr ""
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr ""
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr ""
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr ""
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr ""
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr ""
@@ -9345,52 +9417,52 @@ msgstr ""
msgid "Column %s has been dropped"
msgstr ""
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr ""
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr ""
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr ""
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr ""
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr ""
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr ""
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9418,107 +9490,131 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query"
+msgid "Query error"
+msgstr "تەكشۈرۈش"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
+
+#: tbl_tracking.php:443
+msgid "No data"
+msgstr ""
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "نەشىرنى قۇىماق"
diff --git a/po/uk.po b/po/uk.po
index e480b94d9c..7521d8127a 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,22 +1,22 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-12-28 22:26+0200\n"
"Last-Translator: Olexiy Zagorskyi \n"
"Language-Team: ukrainian \n"
-"Language: uk\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"
+"Language: uk\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: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Показати все"
@@ -46,9 +46,9 @@ msgstr ""
msgid "Search"
msgstr "Шукати"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -64,22 +64,22 @@ msgstr "Шукати"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Вперед"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Ім'я ключа"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Базу даних %1$s створено."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар бази даних: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Коментар до таблиці"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "Коментар до таблиці"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "Стовпчик"
@@ -148,11 +148,11 @@ msgstr "Стовпчик"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Тип"
@@ -162,8 +162,8 @@ msgstr "Тип"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Нуль"
@@ -173,7 +173,7 @@ msgstr "Нуль"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "По замовчуванню"
@@ -196,39 +196,40 @@ msgstr "Лінки до"
msgid "Comments"
msgstr "Коментарі"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Ні"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Так"
@@ -240,8 +241,8 @@ msgstr "Друк"
msgid "View dump (schema) of database"
msgstr "Переглянути дамп (схему) БД"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "В БД не виявлено таблиць."
@@ -267,78 +268,78 @@ msgstr "Базу даних %s перейменовано в %s"
msgid "Database %s has been copied to %s"
msgstr "Базу даних %s скопійовано в %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Перейменувати базу даних в"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Команда"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "Видалити базу даних"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Базу даних %s знищено."
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Знищити базу даних (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копіювати базу даних в"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Лише структуру"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структуру і дані"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Лише дані"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Перед копіюванням створити базу даних (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "Додати %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "Додати AUTO_INCREMENT значення"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Додати constraints"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Перейти до скопійованої бази даних"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Порівняння"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -347,7 +348,7 @@ msgstr ""
"Сховище конфігурації phpMyAdmin деактивовано. Для того, щоб довідатись чому, "
"натисніть %sтут%s."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Редагувати або експортувати схему зв'язків"
@@ -355,17 +356,17 @@ msgstr "Редагувати або експортувати схему зв'я
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Таблиця"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Рядки"
@@ -381,21 +382,21 @@ msgstr "використовується"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Створено"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Поновлено"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Перевірено"
@@ -407,97 +408,90 @@ msgstr[0] "%s таблиця"
msgstr[1] "%s таблиці"
msgstr[2] "%s таблиць"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "Ваш SQL-запит було успішно виконано"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Необхідно вибрати принаймі один Стовпчик для показу"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "Переключитись на"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Посортувати"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Зростаючий"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Спадаючий"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Показати"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Критерій"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Вставити"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Та"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Видалити"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Або"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Змінити"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "Додати/Прибрати рядки критеріїв"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "Додати/Прибрати колонки"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Доповнити запит"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Використовувати таблиці"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "SQL-запит до БД %s:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "Виконати запит"
@@ -539,7 +533,7 @@ msgstr[2] "%s співпадінь у таблиці %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Переглянути"
@@ -548,14 +542,15 @@ msgstr "Переглянути"
msgid "Delete the matches for the %s table?"
msgstr "Видалити співпадіння для таблиці %s ?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Видалити"
@@ -595,17 +590,17 @@ msgstr "Всередині стовпчика:"
msgid "No tables found in database"
msgstr "В БД не виявлено таблиць."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблицю %s було очищено"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблицю %s було знищено"
@@ -618,11 +613,11 @@ msgstr "Трекінг є активним."
msgid "Tracking is not active."
msgstr "Трекінг не активний."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -646,22 +641,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "З відміченими:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Відмітити все"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Зняти усі відмітки"
@@ -670,16 +665,16 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Експорт"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Версія для друку"
@@ -691,28 +686,44 @@ msgstr "Очистити"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Знищити"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Перевірити таблицю"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Оптимізувати таблицю"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Ремонтувати таблицю"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Аналіз таблиці"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Замінити дані таблиці даними з файлу"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Замінити дані таблиці даними з файлу"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Словник даних"
@@ -726,10 +737,10 @@ msgstr ""
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "БД"
@@ -737,36 +748,36 @@ msgstr "БД"
msgid "Last version"
msgstr ""
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr ""
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr ""
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Статус"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Дія"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr ""
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr ""
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr ""
@@ -774,11 +785,11 @@ msgstr ""
msgid "Versions"
msgstr ""
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr ""
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr ""
@@ -786,8 +797,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr ""
@@ -846,8 +857,8 @@ msgstr "Dump збережено у файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -905,6 +916,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "Ваш SQL-запит було успішно виконано"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -929,223 +947,237 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Оператори \"DROP DATABASE\" заборонені."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Ви насправді хочете "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr ""
#: js/messages.php:32
-msgid "Dropping Event"
+msgid "You are about to DESTROY a complete table!"
msgstr ""
#: js/messages.php:33
-msgid "Dropping Procedure"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "Dropping Event"
msgstr ""
#: js/messages.php:35
-msgid "Deleting tracking data"
-msgstr "Видалення даних трекінгу"
-
-#: js/messages.php:36
-msgid "Dropping Primary Key/Index"
+msgid "Dropping Procedure"
msgstr ""
#: js/messages.php:37
+msgid "Deleting tracking data"
+msgstr "Видалення даних трекінгу"
+
+#: js/messages.php:38
+msgid "Dropping Primary Key/Index"
+msgstr ""
+
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Не задано значення для форми!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Це не число!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Порожнє ім'я хоста!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Порожнє і'мя користувача!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Порожній пароль!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Паролі не однакові!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "Додати нового користувача"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "Створити користувача"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "Перезавантаження прав"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "Видалити відмічених користувачів"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr ""
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "Обробка запиту"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "Перейменування баз даних"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "Перезавантаження бази даних"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "Копіювання бази даних"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "Зміна Кодування"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "Таблиця повинна мати принаймі один Стовпчик"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "Створити Таблицю"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "Пошук"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "Сховати блок запиту"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "Показати блок запиту"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "Редагування рядків"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Зберегти"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "Сховати критерії пошуку"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "Показати критерії пошуку"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ігнорувати"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Виберіть колонку для відображення"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
msgid "Generate password"
msgstr "Згенерувати пароль"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "Змінити пароль"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "Більше"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1153,254 +1185,260 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ""
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "Перейти до бази даних"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "Попередні"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Наступні"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "Сьогодні"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "Січень"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "Лютий"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "Березень"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "Квітень"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Травень"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "Червень"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "Липень"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "Серпень"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "Вересень"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "Жовтень"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "Листопад"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "Грудень"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Трв"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Гру"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "Неділя"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "Понеділок"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "Вівторок"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "П'ятниця"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Нд"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "Нд"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "Хвилина"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "Секунда"
@@ -1449,33 +1487,33 @@ msgid "No index defined!"
msgstr "Індекс не визначено!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Індекси"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Унікальне"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Кількість елементів"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редагувати"
@@ -1497,32 +1535,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Бази Даних"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Помилка"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1614,8 +1652,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1761,19 +1799,19 @@ msgstr "Таблиць"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Дані"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Разом"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Надмірні видатки"
@@ -1863,16 +1901,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сервер"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -1907,7 +1945,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Документація"
@@ -2055,7 +2093,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Структура"
@@ -2089,7 +2127,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Встановлений Вами каталог для завантаження файлів недоступний"
@@ -2249,7 +2287,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Перевстановити"
@@ -2365,7 +2403,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2488,7 +2526,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Формат"
@@ -2787,7 +2825,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
@@ -3496,7 +3534,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -3946,9 +3984,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Пароль"
@@ -3968,8 +4006,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4080,7 +4118,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4227,7 +4265,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Назва"
@@ -4250,8 +4288,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Привілеї"
@@ -4263,7 +4301,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4282,23 +4320,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Змінити пароль"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Без паролю"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Підтвердження"
@@ -4320,7 +4358,7 @@ msgid "Create"
msgstr "Створити"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Без привілеїв"
@@ -4424,8 +4462,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4443,7 +4481,7 @@ msgstr "Стискання:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Немає"
@@ -4618,7 +4656,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr ""
@@ -4657,66 +4695,66 @@ msgstr ""
msgid "Browser transformation"
msgstr "Перетворення МІМЕ-типу бровзером"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Рядок видалено"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Вбити"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "по запиту"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Показано записи "
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "всього"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запит виконувався %01.4f сек"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Змінити"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Показати PDF схему"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Створити користувача"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Лінк не знайдено"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr ""
@@ -5099,8 +5137,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5217,9 +5255,9 @@ msgstr "Доступні MIME-types"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Хост"
@@ -5230,7 +5268,7 @@ msgid "Generation Time"
msgstr "Час створення"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Версія сервера"
@@ -5563,7 +5601,30 @@ msgstr "Немає"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "Пт"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Виконати"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Змін немає"
@@ -5869,8 +5930,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Ім'я користувача"
@@ -5891,7 +5952,7 @@ msgstr "Змінна"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Значення"
@@ -5909,34 +5970,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Довільний користувач"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Використовувати текстове поле"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Довільний хост"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Локальний"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Цей хост"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Використовувати Таблицю Хостів"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6000,7 +6061,7 @@ msgstr "Атрибути"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Додатково"
@@ -6103,12 +6164,12 @@ msgid "Toggle scratchboard"
msgstr "ввімкнути чорновик (scratchboard)"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6185,7 +6246,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Виконати SQL запит(и) до БД %s"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6219,10 +6280,6 @@ msgstr ""
msgid " Show this query here again "
msgstr " Показати даний запит знову "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Виконати"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Лише перегляд"
@@ -6231,7 +6288,7 @@ msgstr "Лише перегляд"
msgid "Location of the text file"
msgstr "вкажіть розташування текстового файлу"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
@@ -6283,19 +6340,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Не закриті лапки"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Некоректний ідентифікатор"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Невідомий символ пунктуації"
@@ -6343,7 +6400,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Індекс"
@@ -6353,8 +6410,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
-"%sописи перетворень%s"
+"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
+"sописи перетворень%s"
#: libraries/tbl_properties.inc.php:143
msgid "Transformation options"
@@ -6392,12 +6449,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Первинний"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "ПовнТекст"
@@ -6411,7 +6468,7 @@ msgstr ""
"робить %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6419,12 +6476,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "Додати %s стовпчик(ів)"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6605,81 +6662,81 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Загальні можливості"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "Загальні можливості"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Користувач"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL Charset"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "Показати інформацію про PHP"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "Офіційна сторінка phpMyAdmin"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибути"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Змін немає"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6691,21 +6748,21 @@ msgstr ""
"відкритий для вторгнення і тому Вам обов'язково слід виправити цю прогалину "
"у безпеці."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6713,24 +6770,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфігураційний файл потребує секретну фразу (пароль)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6742,21 +6799,21 @@ msgstr ""
"Додаткова можливість роботи із залінкованими таблицями деактивована. Для "
"того, щоб довідатись чому, натисніть %sтут%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6777,14 +6834,14 @@ msgstr ""
msgid "filter tables by name"
msgstr "Змінити порядок таблиці"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create a page"
msgctxt "short form"
msgid "Create table"
msgstr "Створити нову сторінку"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Прошу вибрати БД"
@@ -7172,111 +7229,111 @@ msgid "Includes all privileges except GRANT."
msgstr "Дозволити всі права за винятком GRANT."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Дозволити змінювати структуру наявних таблиць."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Дозволити створювати нові бази даних та таблиці."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Дозволити створювати нові таблиці."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Дозволити створювати тимчасові таблиці."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Дозволити знищувати дані з таблиць."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Дозволити знищувати бази даних та таблиці."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Дозволити знищувати таблиці."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Дозволити імпорт даних з файлів, та експорт у файли."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
"Дозволити додавання користувачів та прав без перезавантаження таблиці прав."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Дозволити створення та знищення індексів."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Дозволити вставку та заміну даних."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Дозволити блокування таблиць для біжучих потоків."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Обмежити кількість нових під'єднань, які користувач може створювати протягом "
"години."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
"Обмежити кількість запитів, які користувач може надіслати серверу протягом "
"години."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -7284,58 +7341,58 @@ msgstr ""
"Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази "
"даних, які користувач може виконати протягом години."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "Неефективно для цієї версії MySQL."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "Дозволити перезавантаження установок та очищення кешу сервера."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "Надати користувачу право запитувати де є slaves / masters."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Необхідно для реплікації slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Дозволити читання даних."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Надати доступ до повного списку баз даних."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Дозволити вимкнення сервера."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7346,12 +7403,12 @@ msgstr ""
"встановлення ґлобальних змінних чи припинення процесів інших користувачів."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Дозволити зміну даних."
@@ -7366,192 +7423,192 @@ msgctxt "None privileges"
msgid "None"
msgstr "Немає"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Права, які стосуються таблиці"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " Зауваження: привілеї MySQL задаються по-англійськи "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глобальні права"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Права, які стосуються бази даних"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Адміністратор"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глобальні права"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Права, які стосуються бази даних"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Обмеження ресурсів"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Вхідна інформація (Login)"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Не змінювати пароль"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Не знайдено користувача."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "Користувач %s вже існує!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Було додано нового користувача."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "Ви оновили привілеї для %s."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "Ви змінили привілеї для %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "Пароль для %s успішно змінено."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "Усунути %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Перезавантаження прав"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Відмічених користувачів успішно усунуто."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Права успішно перезавантажено."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Редагування привілеїв"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Відмінити"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Довільний"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Огляд користувачів"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "Grant"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Додати нового користувача"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Усунути відмічених користувачів"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "Відмінити всі активні права користувачів та усунути їх після цього."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Вказаного користувача не знайдено в таблиці прав."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Права, які стосуються колонок таблиці"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Додати права для цієї бази даних"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Додати права для цієї таблиці"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Змінити реєстраційні дані / Копіювати користувача"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Створити нового користувача з такими ж правами і ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... залишити старого."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... знищити старого з таблиці користувачів."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
" ... анулювати всі активні права старого користувача, знищивши його після "
"того."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -7559,44 +7616,44 @@ msgstr ""
" ... знищити старого з таблиці користувачів та перевантажити права після "
"того."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Немає"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "Користувачі, котрі мають доступ до "%s""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "глобальний"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "специфічний для бази даних"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "шаблон"
@@ -8611,7 +8668,7 @@ msgstr "Значення сесії"
msgid "Global value"
msgstr "Загальне значення"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8643,55 +8700,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "Модифікації було збережено"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8916,62 +8985,62 @@ msgstr ""
msgid "Function"
msgstr "Функція"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " Через велику довжину,
це поле не може бути відредаговано "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr " Двійкові дані - не редагуються "
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Вставити як новий рядок"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "і потім"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Повернутись"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Вставити новий запис"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9127,7 +9196,7 @@ msgstr "(\"PRIMARY\" повинно бути іменем лише
msgid "Add to index %s column(s)"
msgstr "Додати до індексу %s колоноку(и)"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9153,101 +9222,101 @@ msgstr "Таблицю %s було скопійовано в %s."
msgid "The table name is empty!"
msgstr "Порожня назва таблиці!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Змінити порядок таблиці"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(окремо)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Перенести таблицю в (база даних.таблиця):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Налаштування таблиці"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Перейменувати таблицю в"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Скопіювати таблицю в (база даних.таблиця):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Перейти до скопійованої таблиці"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Обслговування таблиці"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "Було очищено кеш таблиці %s"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Очистити кеш таблиці (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Дамп даних таблиці"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "Видалити таюлицю (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Перевір цілісність даних на рівні посилань:"
@@ -9255,39 +9324,39 @@ msgstr "Перевір цілісність даних на рівні поси
msgid "Show tables"
msgstr "Показати таблиці"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Простір, що використовується"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Використання"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Ефективність"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Статистика рядка"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Параметр"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "динамічний"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Довжина рядка"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " Розмір рядка "
@@ -9371,57 +9440,57 @@ msgstr "Немає"
msgid "Column %s has been dropped"
msgstr "Таблицю %s було знищено"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "Було додано первинний ключ до %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "Було додано індекс для %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "Показати інформацію про PHP"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Перегляд залежностей"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Запропонувати структуру таблиці"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add into comments"
msgid "Add column"
msgstr "Додати коментар"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "У кінці таблиці"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "На початку таблиці"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "Після %s"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "Створити індекс на %s колонках"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9449,107 +9518,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "Тип запиту"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Deleting tracking data"
+msgid "Delete tracking data row from report"
+msgstr "Видалення даних трекінгу"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "БД відсутні"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index 94f8272291..742cb2e9d6 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -4,21 +4,21 @@
# FIRST AUTHOR , YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan \n"
"Language-Team: Urdu \n"
-"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "تمام دکھائیں"
@@ -47,9 +47,9 @@ msgstr ""
msgid "Search"
msgstr "تلاش"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -65,22 +65,22 @@ msgstr "تلاش"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "جائیں"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "کلید نام"
@@ -123,17 +123,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "کوائفیہ $1%s بن گئی ہے۔"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "کوائفیہ تبصرہ:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "جدول تبصرے"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -141,7 +141,7 @@ msgstr "جدول تبصرے"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Command"
msgid "Column"
@@ -154,11 +154,11 @@ msgstr "کالم"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "قِسم"
@@ -168,8 +168,8 @@ msgstr "قِسم"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "خالی"
@@ -179,7 +179,7 @@ msgstr "خالی"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "طے شدہ"
@@ -202,39 +202,40 @@ msgstr "ربط بطرف"
msgid "Comments"
msgstr "تبصرہ"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "نہیں"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "ہاں"
@@ -246,8 +247,8 @@ msgstr "چھاپیں"
msgid "View dump (schema) of database"
msgstr "کوائفیہ کی ڈمپ (شجرہ) منظر کریں"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "کوائفیہ میں کوئی جدول نہیں مِلا۔"
@@ -273,78 +274,78 @@ msgstr "کوائفیہ %s() نام %s میں تبدیل ہوچکا ہے"
msgid "Database %s has been copied to %s"
msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "کوائفیہ نام بدلیں"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "حکم"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "کوائفیہ ہٹائیں"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "کوائفیہ چھوڑیں (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "کوائفیہ نقل کریں بطرف"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "صرف ساخت"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "ساخت اور کوائف"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "کوائف صرف"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE نقل سے قبل"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "اضافہ کریں %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT قدر اضافہ کریں"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "پابندیاں لگائیں"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "نقل شدہ کوائفیہ پر جائیں"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "ترتیب"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -353,7 +354,7 @@ msgstr ""
"phpMyAdmin کی تشکیل زخیرہبند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%s "
"کلک کریں۔"
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں"
@@ -361,17 +362,17 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "جدول"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "صفیں"
@@ -388,21 +389,21 @@ msgstr "استعمال میں ہے"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "بنائیں"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "آخری دفعہ کی تازہ کاری"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "آخری دفعہ کی پڑتال"
@@ -413,97 +414,90 @@ msgid_plural "%s tables"
msgstr[0] "%s جدول"
msgstr[1] "%s جداول"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "آپ کو دکھانے کے لیے کم از کم ایک کالم چننا ہو گا"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "جائیں بطرف"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "بصری تعمیر کنندہ"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "چھانٹیں"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "صعودی"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "نزولی"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "دکھائیں"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "کسوٹی"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Ins"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "اور"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Del"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "یا"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "ترمیم"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "کسوٹی صفیں اضافہ/حذف کریں"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "کالم اضافہ/حذف کریں"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "طلب تازہ کریں"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "جداول استعمال کریں"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "کوائفیہ کے لیے %s SQL طلب"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "طلب بھیجیں"
@@ -544,7 +538,7 @@ msgstr[1] "%sجدول کے ساتھ مشابہات%s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "براؤز"
@@ -553,14 +547,15 @@ msgstr "براؤز"
msgid "Delete the matches for the %s table?"
msgstr "اس جدول کے مشابہات حذف %s کریں؟"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "حذف"
@@ -599,17 +594,17 @@ msgstr "کالم میں:"
msgid "No tables found in database"
msgstr "کوائیفیہ میں کوئی جدول نہیں ملا"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s خالی ہوچکا ہے"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "جدول نقل %s چھوڑا جاچکا ہے۔"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s چھوڑا جاچکا ہے"
@@ -622,11 +617,11 @@ msgstr "کھوج فعال ہے۔"
msgid "Tracking is not active."
msgstr "کھوج غیر فعال ہے۔"
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
@@ -651,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "مع منتخب:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "تمام پڑتال کریں"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "تمام غیر پڑتال کریں"
@@ -675,16 +670,16 @@ msgid "Check tables having overhead"
msgstr "اوور ہیڈ جداول کی پڑتال کریں"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "برآمد"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "چھپائی منظر"
@@ -696,28 +691,44 @@ msgstr "خالی"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "چھوڑیں"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "جدول پڑتال کریں"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "جدول احسن کریں"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "جدول مرمت کریں"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "جدول تجزیہ کریں"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "جدول کوائف کو مسل سے بدلیں"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "جدول کوائف کو مسل سے بدلیں"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "کوائف لغت"
@@ -731,10 +742,10 @@ msgstr "کھوج شدہ جداول"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "کوائفیہ"
@@ -742,36 +753,36 @@ msgstr "کوائفیہ"
msgid "Last version"
msgstr "آخری نسخہ"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "بنایا"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "تازہ کی گئی"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "حالت"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "عمل"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "اس جدول کے لیے کھوج کوائف حذف کریں"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "فعال"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "فعال نہیں ہے"
@@ -779,11 +790,11 @@ msgstr "فعال نہیں ہے"
msgid "Versions"
msgstr "نسخے"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "کھوج رپورٹ"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "ساخت تصویر"
@@ -791,8 +802,8 @@ msgstr "ساخت تصویر"
msgid "Untracked tables"
msgstr "بغیر کھوج جداول"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "جدول کھوج"
@@ -851,11 +862,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔"
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
-"%sdocumentation%s دیکھیں۔"
+"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
+"sdocumentation%s دیکھیں۔"
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -921,6 +932,13 @@ msgstr ""
"بہرحال آخری دفعہ کوائف صرفی نہیں ہوا، اس کا مطلب ہے کہ phpMyAdmin اس درآمد "
"کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔"
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -945,481 +963,505 @@ msgstr "غیر منتخب کے لیے کلک کریں"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔"
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "کیا آپ واقعی چاہتے ہیں"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "واقع کو چھوڑا جارہا ہے"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "طریقہ چھوڑا جارہا ہے"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "کھوج کوائف کو حذف کیا جارہا ہے"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "بنیادی کلید/اشاریہ چھوڑا جارہا ہے"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "یہ عمل زیادہ وقت لے سکتا ہے۔ بہرصورت جاری رکھیں؟"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "آپ ایک BLOB ذخیرہ کو DISABLE کررہے ہیں!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"اثبات کریں کہ آپ تمامBLOB حوالے برائے کوائفیہ کو نااہل کرنا چاہتے ہیں %s?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "فارم میں قدر موجود نہیں!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "یہ ایک نمبر نہیں ہے!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "ہوسٹ نام خالی ہے!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "صارف کا نام خالی ہے"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "پاس ورڈ خالی ہے"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "پاس ورڈ ایک جیسے نہیں ہیں"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "نیا صارف اضافہ کریں"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "صارف بنائیں"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "استحقاق پھر لوڈ کرتے ہوئے"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "منتخب صارفین ہٹائے جارہے ہیں"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "بند کریں"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "منسوخ کریں"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "لوڈ کررہا ہے"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "فرمایش عمل کرتے ہوئے"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "فرمایش عمل کرتے ہوئے نقص ہے"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "کالم چھوڑا جارہا ہے"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "بنیادی کلید شامل کررہا ہے"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "ٹھیک ہے"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "کوائفیہ نام بدلا جارہا ہے"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "کوائفیہ پھر لوڈ کریں"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "کوائفیہ نقل کیا جارہا ہے"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "کریکٹر سیٹ تبدیل کیا جارہا ہے"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "جدول میں کم از کم ایک کالم ہو"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "جدول بنائیں"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "تلاش کر رہا ہے"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "طلب خانہ چھپائیں"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "طلب خانہ دکھائیں"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "ان لائن تدوین"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr ""
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "تلاش کسوٹی چھپائیں"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "تلاش کسوٹی دکھائیں"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "نظر انداز کریں"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "محولہ کلید منتخب کریں"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "فارن کلید منتخب کریں"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "ایک بنیادی یا منفرد کلید منتخب کریں"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "کالم دکھانے کے لیے انتخاب کریں"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "کالم کے لیے ایک اختیار اضافہ کریں"
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "پاس ورڈ بنائیں"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "بنائیں"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "پاس ورڈ تبدیل کریں"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "مزید"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ "
-"%s, جاری کیا گیا %s."
+"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %"
+"s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ", حالیہ مستحکم نسخہ:"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "کوائفیہ جائیں"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "ہوچکا"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "پچھلا"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "اگلا"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "آج"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "جنوری"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "فروری"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "مارچ"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "اپریل"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "مئی"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "جون"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "جولائی"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "اگست"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "ستمبر"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "اکتوبر"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "نومبر"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "دسمبر"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "جنوری"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "فروری"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "مارچ"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "اپریل"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "مئی"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "جون"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "جولائی"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "اگست"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "ستمبر"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "اکتوبر"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "نومبر"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "دسمبر"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "اتوار"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "پیر"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "منگل"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "بدھ"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "جمعرات"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "جمعہ"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "ہفتہ"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "اتوار"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "پیر"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "منگل"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "بدھ"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "جمعرات"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "جمعہ"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "ہفتہ"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "اتوار"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "پیر"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "منگل"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "بدھ"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "جمعرات"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "جمعہ"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "ہفتہ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "ہفتہ وار"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "گھنٹہ"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "منٹ"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "سیکنڈ"
@@ -1471,33 +1513,33 @@ msgid "No index defined!"
msgstr "کوئی اشاریہ موجود نہیں!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "اشاریے"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "منفرد"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "باندھنا"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "درجہ تعلق داری"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "تبصرہ"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تدوین"
@@ -1521,32 +1563,32 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "کوائفیے"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "نقص"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d صف مناثر ہوئے۔"
msgstr[1] "%1$d صفیں متاثر ہوئیں۔"
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d صف حذف ہوئے۔"
msgstr[1] "%1$d صفیں حذف ہوئیں۔"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1638,8 +1680,8 @@ msgstr "%s میں خوش آمدید"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو "
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
@@ -1786,19 +1828,19 @@ msgstr "جداول"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "کوائف"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "میزان"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "مجموعی"
@@ -1859,8 +1901,8 @@ msgstr ""
"phpMyAdmin آپ کی تشکیل مسل مطالعہ نہیں کرسکا!
یہ اس لیے بھی ہوسکتا ہے "
"اگر PHP کو کوئی تجزیاتی نقص ملا یا PHP کو مسل نہیں ملا۔
نیچے دیے گئے "
"ربط سے تشکیل مسل کوبراہ راست استعمال کریں اور وصول ہونے والے PHP نقص "
-"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا ہے۔"
-"
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔"
+"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا "
+"ہے۔
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔"
#: libraries/common.inc.php:587
#, php-format
@@ -1885,16 +1927,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔"
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "سرور"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔"
@@ -1929,7 +1971,7 @@ msgstr "انگریزی"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "دستاویزات"
@@ -2077,7 +2119,7 @@ msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھ
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "ساخت"
@@ -2111,7 +2153,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے"
@@ -2269,7 +2311,7 @@ msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "دوبارہ سیٹ کریں"
@@ -2396,7 +2438,7 @@ msgid "Compress on the fly"
msgstr "سرعت سے سکیڑیں"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "تشکیلی مسل"
@@ -2524,7 +2566,7 @@ msgid "Character set of the file"
msgstr "مسل کے لیے حروف کی سیٹ"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "وضع"
@@ -2825,7 +2867,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "گشت چوکھٹا کی ظاہری شکل کی تخصیص کریں"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "سرور"
@@ -3373,8 +3415,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-"ایک سکرپٹ کو کو جگہ مختص کرنے کے لیے بائٹ کی تعداد لکھیں جیسا کہ "
-"[kbd]32M[/kbd] ([kbd]0[/kbd] بغیر حد کے)"
+"ایک سکرپٹ کو کو جگہ مختص کرنے کے لیے بائٹ کی تعداد لکھیں جیسا کہ [kbd]32M[/"
+"kbd] ([kbd]0[/kbd] بغیر حد کے)"
#: libraries/config/messages.inc.php:313
msgid "Memory limit"
@@ -3589,7 +3631,7 @@ msgstr "SweKey تشکیل مسل"
msgid "Authentication method to use"
msgstr "توثیق کا طریقہ جو استعمال ہو"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "توثیق قسم"
@@ -3661,8 +3703,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
-"[kbd]pma_designer_coords[/kbd]"
+"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
+"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:379
msgid "Designer table"
@@ -3673,9 +3715,8 @@ 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 ""
-"مزید معلومات یہاں موجود ہے "
-"[a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] and "
-"[a@http://bugs.mysql.com/19588]MySQL نقائص[/a]"
+"مزید معلومات یہاں موجود ہے [a@http://sf.net/support/tracker.php?aid=1849494]"
+"PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص[/a]"
#: libraries/config/messages.inc.php:381
msgid "Disable use of INFORMATION_SCHEMA"
@@ -3703,8 +3744,7 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-"SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: "
-"[kbd]pma_history[/kbd]"
+"SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]"
#: libraries/config/messages.inc.php:387
msgid "SQL query history table"
@@ -4054,9 +4094,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr ""
@@ -4076,8 +4116,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr ""
@@ -4192,7 +4232,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4339,7 +4379,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr ""
@@ -4362,8 +4402,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr ""
@@ -4375,7 +4415,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4394,23 +4434,23 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr ""
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr ""
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr ""
@@ -4432,7 +4472,7 @@ msgid "Create"
msgstr ""
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr ""
@@ -4546,8 +4586,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4565,7 +4605,7 @@ msgstr ""
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr ""
@@ -4730,7 +4770,7 @@ msgstr ""
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr ""
@@ -4763,66 +4803,66 @@ msgstr ""
msgid "Browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "ٹیبل کمنٹس"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Created"
msgid "Create view"
msgstr "تخلیق کیا گیا"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr ""
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr ""
@@ -5205,8 +5245,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5307,9 +5347,9 @@ msgstr ""
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr ""
@@ -5320,7 +5360,7 @@ msgid "Generation Time"
msgstr ""
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr ""
@@ -5650,7 +5690,30 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "جمعہ"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr ""
@@ -5952,8 +6015,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr ""
@@ -5974,7 +6037,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr ""
@@ -5992,34 +6055,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr ""
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr ""
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr ""
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr ""
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr ""
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr ""
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6081,7 +6144,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr ""
@@ -6180,12 +6243,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -6260,7 +6323,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr ""
@@ -6294,10 +6357,6 @@ msgstr ""
msgid " Show this query here again "
msgstr ""
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr ""
@@ -6306,7 +6365,7 @@ msgstr ""
msgid "Location of the text file"
msgstr ""
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr ""
@@ -6345,19 +6404,19 @@ msgstr ""
msgid "END RAW"
msgstr ""
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr ""
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr ""
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr ""
@@ -6397,7 +6456,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr ""
@@ -6438,12 +6497,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr ""
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr ""
@@ -6455,7 +6514,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr ""
@@ -6463,12 +6522,12 @@ msgstr ""
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
@@ -6610,77 +6669,77 @@ msgstr ""
msgid "Error in ZIP archive:"
msgstr ""
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "جنرل ریلیشن فیچرز"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr ""
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "جنرل ریلیشن فیچرز"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr ""
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr ""
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr ""
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr ""
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr ""
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr ""
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr ""
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr ""
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr ""
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6688,21 +6747,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6710,24 +6769,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -6739,21 +6798,21 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6772,12 +6831,12 @@ msgstr ""
msgid "filter tables by name"
msgstr ""
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr ""
@@ -7155,163 +7214,163 @@ msgid "Includes all privileges except GRANT."
msgstr ""
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr ""
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr ""
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr ""
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr ""
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr ""
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr ""
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr ""
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr ""
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr ""
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr ""
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr ""
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr ""
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr ""
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr ""
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr ""
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7319,12 +7378,12 @@ msgid ""
msgstr ""
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr ""
@@ -7337,225 +7396,225 @@ msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr ""
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr ""
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr ""
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr ""
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr ""
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr ""
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr ""
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr ""
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr ""
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr ""
@@ -8560,7 +8619,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8592,55 +8651,67 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "تشکیل ذخیرہ"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -8863,60 +8934,60 @@ msgstr ""
msgid "Function"
msgstr ""
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr ""
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr ""
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "اور پھر"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9066,7 +9137,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr ""
@@ -9092,101 +9163,101 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr ""
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr ""
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr ""
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr ""
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr ""
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr ""
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr ""
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr ""
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr ""
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr ""
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr ""
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "اس ٹیبل کیلئے ٹریکنگ ڈیٹا حذف کریں "
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
msgstr "ڈیٹا بیس کاپی کریں"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr ""
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr ""
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr ""
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr ""
@@ -9194,39 +9265,39 @@ msgstr ""
msgid "Show tables"
msgstr ""
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr ""
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr ""
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr ""
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr ""
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr ""
@@ -9304,54 +9375,54 @@ msgstr ""
msgid "Column %s has been dropped"
msgstr "Table %s has been dropped"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr ""
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr ""
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr ""
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add column"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr ""
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr ""
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9379,107 +9450,133 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr ""
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+msgid "Tracking data definition succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "نقائص اکھٹی کریں"
+
+#: tbl_tracking.php:399
+msgid "Tracking data manipulation succesfully deleted"
+msgstr ""
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr ""
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "اس جدول کے لیے کھوج کوائف حذف کریں"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "data"
+msgid "No data"
+msgstr "کوائف"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr ""
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr ""
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr ""
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr ""
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr ""
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr ""
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr ""
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr ""
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr ""
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr ""
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index ffcc75a20f..4d86fa8fa6 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_cyrillic \n"
-"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uz\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Барчасини кўрсатиш"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "Қидириш"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "Қидириш"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Индекс номи"
@@ -119,17 +119,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr " %1$s маълумотлар базаси тузилди."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Маълумотлар базасига изоҳ:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Жадвал изоҳи"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -137,7 +137,7 @@ msgstr "Жадвал изоҳи"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -150,11 +150,11 @@ msgstr "Майдон номлари"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Тур"
@@ -164,8 +164,8 @@ msgstr "Тур"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -175,7 +175,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Андоза"
@@ -198,39 +198,40 @@ msgstr "Алоқалар"
msgid "Comments"
msgstr "Изоҳлар"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Йўқ"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ҳа"
@@ -242,8 +243,8 @@ msgstr "Чоп этиш"
msgid "View dump (schema) of database"
msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас."
@@ -269,82 +270,82 @@ msgstr " `\"%s\"` маълумотлар базасининг номи `\"%s\"`
msgid "Database %s has been copied to %s"
msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди."
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Буйруқ"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr " \"%s\" маълумотлар омбори ўчирилди."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
msgstr "Ушбу базага ўтиш"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Маълумотлар базасидан қуйидагига нусха олиш"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Фақат тузилиши"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Тузилиши ва маълумотлари"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Фақат маълумотлар"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "\"%s\" қўшиш"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT қўшиш"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Чекловлар қўшиш"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Нусха олинган маълумотлар базасига ўтиш"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Таққослаш"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -356,7 +357,7 @@ msgstr ""
"Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. "
"Сабабларини аниқлаш учун %sбу ерга%s босинг."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -366,17 +367,17 @@ msgstr "Алоқалар схемаси"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Жадвал "
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Қаторларсони"
@@ -392,21 +393,21 @@ msgstr "ишлатилмоқда"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Тузиш"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Охирги янгиланиш"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Охирги текширув"
@@ -418,101 +419,94 @@ msgid_plural "%s tables"
msgstr[0] "Жадваллар сони: \"%s\""
msgstr[1] "Жадваллар сони: \"%s\""
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL сўрови муваффақиятли бажарилди"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак."
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Сортировка қилиш"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ўсиш тартибида"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Камайиш тартибида"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Кўрсатиш"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Критерий"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Қўйиш"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Ва"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "Ўчириш"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Ёки"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "Ўзгаририш"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Қатор қўшиш/ўчириш"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Устун қўшиш/ўчириш"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "Сўровни янгилаш"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Жадвалларни ишлатиш"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "\"%s\" маълумотлар базасига SQL-сўров: "
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "сўровни бажариш"
@@ -554,7 +548,7 @@ msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Кўриб чиқиш"
@@ -564,14 +558,15 @@ msgstr "Кўриб чиқиш"
msgid "Delete the matches for the %s table?"
msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "Ўчириш"
@@ -615,17 +610,17 @@ msgstr "Қуйидаги майдон(лар)да қидириш: "
msgid "No tables found in database"
msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "\"%s\" жадвали тозаланди"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr " \"%s\" намойиши ўчирилди"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "\"%s\" жадвали ўчирилди"
@@ -638,11 +633,11 @@ msgstr "Кузатиш фаол."
msgid "Tracking is not active."
msgstr "Кузатиш фаол эмас."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
@@ -668,22 +663,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Белгиланганларни: "
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Барчасини белгилаш"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Белгилашни бекор қилиш"
@@ -692,16 +687,16 @@ msgid "Check tables having overhead"
msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Экспорт"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Чоп этиш версияси"
@@ -713,28 +708,46 @@ msgstr "Тозалаш"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "Ўчириш"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Жадвални текшириш"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Жадвални оптималлаштириш"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Жадвални тиклаш"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Жадвал таҳлили"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Ушбу жадвалга ўтиш"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Маълумотлар луғати"
@@ -748,10 +761,10 @@ msgstr "Кузатилган жадваллар"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Маълумотлар базаси"
@@ -759,36 +772,36 @@ msgstr "Маълумотлар базаси"
msgid "Last version"
msgstr "Охирги версия"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Тузилди"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Янгиланди"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Ҳолат"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Амал"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "фаол"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "фаол эмас"
@@ -796,11 +809,11 @@ msgstr "фаол эмас"
msgid "Versions"
msgstr "Версиялар"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Кузатиш ҳисоботи"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Тузилма расми"
@@ -808,8 +821,8 @@ msgstr "Тузилма расми"
msgid "Untracked tables"
msgstr "Кузатилмаган жадваллар"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Жадвални кузатиш"
@@ -868,11 +881,11 @@ msgstr "Дамп \"%s\" файлида сақланди."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
-"%sдокументацияда%s келтирилган."
+"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
+"sдокументацияда%s келтирилган."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -944,6 +957,13 @@ msgstr ""
"Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча "
"phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL сўрови муваффақиятли бажарилди"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -969,273 +989,291 @@ msgstr "Танлашни бекор қилиш учун сичқонча туг
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Муолажалар"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Deleting tracking data"
msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "Ушбу операцияни бажариш узоқ вақт талаб қилиши мумкин. Давом этсинми? "
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Сиз BLOB омборини ФАОЛСИЗЛАНТИРМОҚЧИСИЗ!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Сиз ҳақиқатдан ҳам \"%s\" базаси учун барча BLOB мурожаатларини бекор "
"қилмоқчимисиз?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Форманинг керакли майдонлари тўлдирилмаган!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Сон киритинг!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Хост номи бўш!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Фойдаланувчи номи белгиланмаган!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Парол белгиланмаган!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Киритилган пароллар бир хил эмас!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Янги фойдаланувчи қўшиш"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create version"
msgid "Create User"
msgstr "Версиясини тузиш"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Привилегиялар қайта юкланмоқда"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Белгиланган фойдаланувчиларни ўчириш"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Ёпиш"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Бекор қилиш"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "Юклаш"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Жараёнлар"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Маълумотлар базасидан қуйидагига нусха олиш"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Кодировка"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Жадвал тузиш"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Қидириш"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Жадвал турлари"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Сақлаш"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Яшириш"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Эътибор бермаслик"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Боғлиқ калитни танланг"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Ташқи калитни танланг"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Кўрсатиладиган майдонни танлаш"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Парол ўрнатиш"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генерация қилиш"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Паролни ўзгартириш"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Душ"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1246,125 +1284,131 @@ msgstr ""
"чиқарилган."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Охирги версияни текшириш"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Go to database"
+msgid "up to date"
+msgstr "Ушбу базага ўтиш"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Садақа"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Орқага"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Кейинги"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Жами"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Иккилик"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Мар"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Апр"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "Май"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Июн"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Июл"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Авг"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Окт"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1372,178 +1416,178 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Якш"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Душ"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Сеш"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Жум"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Якш"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Душ"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Сеш"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Чор"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Пай"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Жум"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Шан"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Якш"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Душ"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Сеш"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Чор"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пай"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Жум"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Шан"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Вики"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ишлатилмоқда"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1600,33 +1644,33 @@ msgid "No index defined!"
msgstr "Индекс белгиланмаган!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Индекслар"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Уникал"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Қисилган"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Элементлар сони"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Изоҳ"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Таҳрирлаш"
@@ -1648,18 +1692,18 @@ msgstr " %1$s ва %2$s индекслари бир хил, улардан би
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Маълумотлар базалари"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Хатолик"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1667,7 +1711,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d та қаторларга таъсир этди."
msgstr[1] "%1$d та қаторларга таъсир этди."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1675,7 +1719,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d та қаторлар ўчирилди."
msgstr[1] "%1$d та қаторлар ўчирилди."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1768,8 +1812,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
"сценарийсидан%2$s фойдаланишингиз мумкин."
@@ -1922,19 +1966,19 @@ msgstr "Жадваллар"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Маълумотлар"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Жами"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Фрагментланган"
@@ -2036,17 +2080,17 @@ msgstr ""
"файлида белгиланган созлашларни тўғирланг."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Сервер"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
"phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr " \"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур."
@@ -2081,7 +2125,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Документация"
@@ -2235,7 +2279,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Тузилиши"
@@ -2270,7 +2314,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Юклаш каталогидан"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Кўрсатилган каталокка юклаб бўлмади"
@@ -2441,7 +2485,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Тозалаш"
@@ -2577,7 +2621,7 @@ msgid "Compress on the fly"
msgstr "Бирйўла қисиш"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Конфигурацион файл"
@@ -2720,7 +2764,7 @@ msgid "Character set of the file"
msgstr "Файл кодировкаси"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Формат"
@@ -3045,7 +3089,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Навигация панели кўринишини созлаш"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Серверлар"
@@ -3870,7 +3914,7 @@ msgstr "\"SweKey\" конфигурация файли"
msgid "Authentication method to use"
msgstr "Фойдаланиладиган аутентификация усули"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Аутентификация усули"
@@ -4048,8 +4092,8 @@ msgstr "\"config\" аутентификация усули пароли"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
-"[kbd]\"pma_pdf_pages\"[/kbd]"
+"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
+"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:398
msgid "PDF schema: pages table"
@@ -4139,8 +4183,8 @@ msgstr "SSL уланишдан фойдаланиш"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
-"[kbd]\"pma_table_coords\"[/kbd]"
+"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
+"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:415
msgid "PDF schema: table coordinates"
@@ -4411,9 +4455,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Парол"
@@ -4433,8 +4477,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Фойдаланувчи"
@@ -4561,7 +4605,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Кенгайтирилган ибора"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Охирги версияни текшириш"
@@ -4730,7 +4774,7 @@ msgstr "Ҳодисалар"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Номи"
@@ -4753,8 +4797,8 @@ msgid "Designer"
msgstr "Дизайнер"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Привилегиялар"
@@ -4766,7 +4810,7 @@ msgstr "Муолажалар"
msgid "Return type"
msgstr "Қайтариладиган тип"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4789,23 +4833,23 @@ msgstr "Сервер жавоб бермаяпти"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Тафсилотлар..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Паролни ўзгартириш"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Парол йўқ"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Тасдиқлаш"
@@ -4829,7 +4873,7 @@ msgid "Create"
msgstr "Тузиш"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Привилегиялар йўқ"
@@ -4964,12 +5008,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
-"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
-"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
+"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
+"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -4988,7 +5032,7 @@ msgstr "Сиқиш"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Йўқ"
@@ -5192,7 +5236,7 @@ msgstr "Индекс бўйича сортировка қилиш"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Параметрлар"
@@ -5231,66 +5275,66 @@ msgstr "BLOB туридаги маълумотларни кўрсатиш"
msgid "Browser transformation"
msgstr "Ўгириш"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Ёзув ўчирилди"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Тугатиш"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "сўров бўйича"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Ёзувларни кўрсатиш"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "жами"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "Сўров %01.4f секунд вақт олди"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "Ўзгартириш"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "Сўров натижаларини ишлатиш"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Чоп этиш версияси (тўла)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-схемани кўрсатиш"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Версиясини тузиш"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Алоқа топилмади"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Версия ҳақида маълумот"
@@ -5730,8 +5774,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5854,9 +5898,9 @@ msgstr "Мавжуд MIME турлари"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Хост"
@@ -5867,7 +5911,7 @@ msgid "Generation Time"
msgstr "Тузилган сана "
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Сервер версияси"
@@ -6220,7 +6264,32 @@ msgstr "Йўқ"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Жум"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Бажариш"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Apply index(s)"
+msgid "Add prefix"
+msgstr "Индекс(лар)ни сақлаш"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "Ўзгариш йўқ"
@@ -6534,8 +6603,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Фойдаланувчи номи"
@@ -6556,7 +6625,7 @@ msgstr "Ўзгарувчи"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Қиймати"
@@ -6576,34 +6645,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Тобе репликация фойдаланувчисини қўшиш"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Ҳар қайси фойдаланувчи"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Матнмайдонини ишлатиш"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Ҳар қайси хост"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Локал"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ушбу хост"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Хостлар жадвалидан фойдаланиш"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6671,7 +6740,7 @@ msgstr "Атрибутлар"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Қўшимча"
@@ -6774,12 +6843,12 @@ msgid "Toggle scratchboard"
msgstr "Кўрсатиш"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Номаълум тил: %1$s."
@@ -6856,7 +6925,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Тозалаш"
@@ -6890,10 +6959,6 @@ msgstr "Тақсимловчи"
msgid " Show this query here again "
msgstr "Ушбу сўровни қайта кўрсатиш"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Бажариш"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Фақат кўриш"
@@ -6902,7 +6967,7 @@ msgstr "Фақат кўриш"
msgid "Location of the text file"
msgstr "Файлни танлаш"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Юклаш каталогидан"
@@ -6952,19 +7017,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Ёпилмаган қўштирноқ"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Нотўғри идентификатор"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Номаълум пунктуация"
@@ -7018,7 +7083,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Индекс"
@@ -7067,12 +7132,12 @@ msgid "As defined:"
msgstr "Қоидага кўра:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Бирламчи"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Матн тўлалигича"
@@ -7086,7 +7151,7 @@ msgstr ""
"намойиши функцияларининг иши яқин орада тавсифланади. "
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Жадвал тури"
@@ -7094,13 +7159,13 @@ msgstr "Жадвал тури"
msgid "PARTITION definition"
msgstr "Бўлакларни (PARTITIONS) белгилаш"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Устун(лар) қўшиш"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7329,83 +7394,83 @@ msgstr "ZIP-архив ичида файл мавжуд эмас!"
msgid "Error in ZIP archive:"
msgstr "Ушбу ZIP архивда хатолик:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Алоқаларнинг асосий имкониятлари"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL билан уланишни чоғиштириш"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Бошқа созланишлар"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "settings"
msgid "More settings"
msgstr "танловлар"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Протокол версияси"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Фойдаланувчи"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-кодировка"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Веб сервер"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL-клиент версияси"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP кенгайтмаси"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP ҳақида маълумотни кўрсатиш"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Вики"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr " phpMyAdmin расмий веб-саҳифаси"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибутлар"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Ўзгариш йўқ"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7417,7 +7482,7 @@ msgstr ""
"созланган MySQL сервери хавфсизлик жиҳатидан анча заиф ҳисобланади, шунинг "
"учун \"root\" суперфойдаланувчисига парол ўрнатиш қатъиян тавсия этилади."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7427,7 +7492,7 @@ msgstr ""
"func_overload параметри ёқилган. Маълумот йўқолиши олдини олиш учун, ушбу "
"параметр ўчирилиши керак!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7438,7 +7503,7 @@ msgstr ""
"маълумот йўқолишига олиб келиши мумкин. PHP \"mbstring\" кенгайтмасини "
"ўрнатиш қатъий тавсия этилади."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7451,7 +7516,7 @@ msgstr ""
"давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида "
"конфигурация қилганингиздан тезроқ тугайди."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7468,13 +7533,13 @@ msgstr ""
"давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида "
"конфигурация қилганингиздан тезроқ тугайди."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"cookie-аутентификация ишлатилганда, конфигурацион файлдаги $cfg"
"[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7484,7 +7549,7 @@ msgstr ""
"каталоги ҳалиям мавжуд. phpMyAdmin муваффақиятли ўрнатилгандан кейин, уни "
"ўчириш тавсия этилади."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7496,7 +7561,7 @@ msgstr ""
"Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. "
"Сабабларини аниқлаш учун %sбу ерга%s босинг."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7506,7 +7571,7 @@ msgstr ""
"баъзи функциялари ишламайди. Масалан, навигация ойнаси автоматик тарзда "
"янгиланиб турмайди."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7515,7 +7580,7 @@ msgstr ""
"MySQL-клиент версияси (\"%s\") ўрнатилган MySQL-сервер версияси(\"%s\")дан "
"фарқ қилмоқда. Бу ҳолат нохуш оқибатларга олиб келиши мумкин."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7538,14 +7603,14 @@ msgstr "Фильтр"
msgid "filter tables by name"
msgstr "жадвал номи"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Жадвал тузиш"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Маълумотлар базасини танланг"
@@ -7950,75 +8015,75 @@ msgid "Includes all privileges except GRANT."
msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади"
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради"
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради"
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради"
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Сақланадиган муолажалар тузишга рухсат беради"
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Янги жадваллар тузишга рухсат беради"
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Вақтинчалик жадваллар тузишга рухсат беради"
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради"
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради"
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Маълумотларни ўчиришга рухсат беради"
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради"
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Жадвалларни ўчиришга рухъсат беради"
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Сақланадиган муолажаларни бажаришга рухсат беради"
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради"
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -8026,33 +8091,33 @@ msgstr ""
"привилегиялар қўшишга рухсат беради"
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради"
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради"
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради"
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
"Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони"
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони"
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -8060,64 +8125,64 @@ msgstr ""
"Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки "
"маълумотлар базасини ўзгартирадиган буйруқлар сони"
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
"Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган "
"уланишлар сони"
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!"
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
"Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат "
"беради"
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
"Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат "
"беради"
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак"
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Маълумотларни чақиришга рухсат беради"
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради"
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Сервер ишини якунлашга рухсат беради"
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -8128,14 +8193,14 @@ msgstr ""
"ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)"
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr ""
"Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) "
"тузиш ва уларни ўчиришга рухсат беради"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Маълумотларни ўзгартиришга рухсат беради"
@@ -8150,244 +8215,244 @@ msgctxt "None privileges"
msgid "None"
msgstr "Йўқ"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Жадвал даражасижаги привилегиялар"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади."
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Глобал привилегиялар"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Маълумотлар базаси привилегиялари"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Администрация"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Глобал привилегиялар"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Маълумотлар базаси привилегиялари"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Ресурслардан фойдаланишни чеклаш"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
"ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор "
"қилади."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Фойдаланувчи ҳисоби ҳақида маълумот"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Паролни ўзгартирмаслик"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Биронта ҳам фойдаланувчи топилмади."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr " \"%s\" номли фойдаланувчи мавжуд!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Сиз янги фойдаланувчи қўшдингиз."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr " \"%s\" учун привилегиялар ўзгартирилди."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr " \"%s\" фойдаланувчининг привилегиялари бекор қилинди."
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "\"%s\" ўчирилмоқда"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Привилегиялар қайта юкланмоқда"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Привилегиялар муваффақиятли қайта юкланди."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Привилегияларни таҳрирлаш"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Бекор қилиш"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Ҳар қайси"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Янги фойдаланувчи қўшиш"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Белгиланган фойдаланувчиларни ўчириш"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
"Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни "
"ўчириш."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Майдон привилегиялари"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
"Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари "
"ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак."
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Қуйидаги жадвалга привилегия қўшиш"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr " ва эскисини сақлаш."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ва фойдаланувчилар жадвалидан эскисини ўчириш."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Фойдаланувчи учун маълумотлар базаси"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Йўқ"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
"Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ "
"привилегияларни бериш."
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
"(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига "
"тўлиқ привилегияларни бериш."
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\"га рухсати бўлган фойдаланувчилар"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "Глобал"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Маълумотлар базаси даражасида"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "Гуруҳлаш белгиси"
@@ -9049,8 +9114,8 @@ msgstr "Очиқ файллар сони."
#: server_status.php:121
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen"
-"()\" функцияси ёрдамида очилган файлга айтилади."
+"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
+"\" функцияси ёрдамида очилган файлга айтилади."
#: server_status.php:122
msgid "The number of tables that are open."
@@ -9571,7 +9636,7 @@ msgstr "Сессия қийматлари"
msgid "Global value"
msgstr "Глобал қиймат"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Юклаб олиш"
@@ -9617,55 +9682,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Нохавфсиз уланиш"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration file"
+msgid "Configuration saved."
+msgstr "Конфигурацион файл"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Кўриб чиқиш"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Яширин хабарларни кўрсатиш (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Янги сервер"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Тил"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "фойдаланувчига танлаш имконини бериш"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- йўқ -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Сервер"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Сатр охири"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Кўрсатиш"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Юклаш"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin сайти"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Садақа"
@@ -9867,9 +9944,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9985,63 +10062,63 @@ msgstr "%1$s жадвали муваффақиятли ўзгартирилди"
msgid "Function"
msgstr "Функция"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr "Маълумотлар кўплиги сабали
ўзгартириш қийишлашиши мумкин"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "BLOB омбори мурожаатларини ўчириш"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "BLOB омборига юклаш"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Ёзув киритиш"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Киритилган сўровни кўрсатиш"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "ва сўнг"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Олдинги саҳифага ўтиш"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Янги ёзув киритиш"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Ушбу саҳифага қайтиш"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Кейинги қаторни таҳрирлаш"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -10206,7 +10283,7 @@ msgstr "(\"PRIMARY\" номи фақат бирламчи индексг
msgid "Add to index %s column(s)"
msgstr " \"%s\" майдон(лар)ини индексга қўшиш"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Устунлар сони нолдан кўп бўлиши шарт."
@@ -10232,103 +10309,103 @@ msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди."
msgid "The table name is empty!"
msgstr "Жадвал номи кўрсатилмаган!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Жадвал сортировкасини ўзгартириш"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(устун)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Жадвални (маълумотлар базаси.жадвал) га кўчириш:"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Жадвал параметрлари"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Жадвал номини ўзгартириш"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш:"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Нусха олинган жадвалга ўтиш"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Жадвалга хизмат кўрсатиш"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Жадвални дефрагментациялаш"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "\"%s\" жадвали кеши янгиланди"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Жадвал кешини янгилаш (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Ушбу базага ўтиш"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "бўлакларга хизмат кўрсатиш"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "\"%s\" бўлаги"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Таҳлил"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Текшириш"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Оптимизация"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Қайта қуриш"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Тиклаш"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Бўлакларни (PARTITIONS) ўчириш"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Маълумотлар яхлитлигини текшириш:"
@@ -10336,39 +10413,39 @@ msgstr "Маълумотлар яхлитлигини текшириш:"
msgid "Show tables"
msgstr "Жадвалларни кўрсатиш"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Фойдаланилаётган жой"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Ишлатилиш"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Эффективлик"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Қаторлар статистикаси"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Тавсиф"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "статик"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "динамик"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Қатор узунлиги"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Қатор ҳажми"
@@ -10460,57 +10537,57 @@ msgstr "Йўқ"
msgid "Column %s has been dropped"
msgstr "\"%s\" жадвали ўчирилди"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr " \"%s\" га бирламчи калит қўшилди"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr " \"%s\" учун индекс қўшилди"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Версияларни кўрсатиш"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Алоқаларни кўриш"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Жадвал тузилиши таҳлили"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add column(s)"
msgid "Add column"
msgstr "Устун(лар) қўшиш"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Жадвал охирига"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Жадвал бошига"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr " \"%s\" дан кейин"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "\"%s\" майдон учун индекс тузиш"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "бўлакларга бўлинган"
@@ -10538,7 +10615,7 @@ msgstr "\"%s.%s\" ни кузатиш, %s версия фаоллаштирил
msgid "SQL statements executed."
msgstr "SQL сўрови бажарилди."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -10546,101 +10623,131 @@ msgstr ""
"Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун "
"етарли привилегияларга эга бўлишингиз керак."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "%s версия расми (SQL коди)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Ignore errors"
+msgid "Query error"
+msgstr "Хатоларга эътибор бермаслик"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Кузатиш операторлари"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Маълумотлар базаси мавжуд эмас"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Санани"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Маълумотлар таърифи операторини"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Маълумотларни бошқариш операторини"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL дампи (файлни юклаб олиш)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL дамп"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL бажаруви"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "\"%s\" деб экспорт қилиш"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Версияларни кўрсатиш"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Версия"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "\"%s.%s\" жадвалини кузатишни фаолсизлантириш"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Ҳозир фаолсизлантириш"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "\"%s.%s\" жадвалини кузатишни фаоллаштириш"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Ҳозир фаоллаштириш"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Версиясини тузиш"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 1f2b908c45..9150fa3892 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -1,21 +1,21 @@
# Automatically generated <>, 2010.
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_latin \n"
-"Language: uz@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uz@latin\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "Barchasini ko‘rsatish"
@@ -45,9 +45,9 @@ msgstr ""
msgid "Search"
msgstr "Qidirish"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -63,22 +63,22 @@ msgstr "Qidirish"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "Indeks nomi"
@@ -120,17 +120,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr " %1$s ma`lumotlar bazasi tuzildi."
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Ma`lumotlar bazasiga izoh:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Jadval izohi"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -138,7 +138,7 @@ msgstr "Jadval izohi"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -151,11 +151,11 @@ msgstr "Maydon nomlari"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "Tur"
@@ -165,8 +165,8 @@ msgstr "Tur"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -176,7 +176,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "Andoza"
@@ -199,39 +199,40 @@ msgstr "Aloqalar"
msgid "Comments"
msgstr "Izohlar"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "Yo‘q"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "Ha"
@@ -243,8 +244,8 @@ msgstr "Chop etish"
msgid "View dump (schema) of database"
msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
@@ -270,82 +271,82 @@ msgstr " `\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi."
msgid "Database %s has been copied to %s"
msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi."
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "Buyruq"
-#: db_operations.php:433
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr " \"%s\" ma`lumotlar ombori o‘chirildi."
-#: db_operations.php:450
+#: db_operations.php:457
#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
msgstr "Ushbu bazaga o‘tish"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "Faqat tuzilishi"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Tuzilishi va ma`lumotlari"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "Faqat ma`lumotlar"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "\"%s\" qo‘shish"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT qo‘shish"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "Cheklovlar qo‘shish"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "Taqqoslash"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -357,7 +358,7 @@ msgstr ""
"Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. "
"Sabablarini aniqlash uchun %sbu yerga%s bosing."
-#: db_operations.php:589
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -367,17 +368,17 @@ msgstr "Aloqalar sxemasi"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "Jadval "
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "Qatorlarsoni"
@@ -393,21 +394,21 @@ msgstr "ishlatilmoqda"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "Tuzish"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "Oxirgi yangilanish"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "Oxirgi tekshiruv"
@@ -419,101 +420,94 @@ msgid_plural "%s tables"
msgstr[0] "Jadvallar soni: \"%s\""
msgstr[1] "Jadvallar soni: \"%s\""
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "SQL so‘rovi muvaffaqiyatli bajarildi"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
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:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr ""
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "Sortirovka qilish"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "O‘sish tartibida"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "Kamayish tartibida"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "Ko‘rsatish"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "Kriteriy"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "Qo‘yish"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "Va"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "O‘chirish"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "Yoki"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "O‘zgarirish"
-#: db_qbe.php:603
+#: db_qbe.php:606
#, fuzzy
#| msgid "Add/Delete Criteria Row"
msgid "Add/Delete criteria rows"
msgstr "Qator qo‘shish/o‘chirish"
-#: db_qbe.php:615
+#: db_qbe.php:618
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add/Delete columns"
msgstr "Ustun qo‘shish/o‘chirish"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "So‘rovni yangilash"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "Jadvallarni ishlatish"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: "
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "so‘rovni bajarish"
@@ -555,7 +549,7 @@ msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "Ko‘rib chiqish"
@@ -565,14 +559,15 @@ msgstr "Ko‘rib chiqish"
msgid "Delete the matches for the %s table?"
msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "O‘chirish"
@@ -617,17 +612,17 @@ msgstr "Quyidagi maydon(lar)da qidirish: "
msgid "No tables found in database"
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "\"%s\" jadvali tozalandi"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr " \"%s\" namoyishi o‘chirildi"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "\"%s\" jadvali o‘chirildi"
@@ -640,11 +635,11 @@ msgstr "Kuzatish faol."
msgid "Tracking is not active."
msgstr "Kuzatish faol emas."
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@@ -670,22 +665,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "Belgilanganlarni: "
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "Barchasini belgilash"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Belgilashni bekor qilish"
@@ -694,16 +689,16 @@ msgid "Check tables having overhead"
msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "Eksport"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "Chop etish versiyasi"
@@ -715,28 +710,46 @@ msgstr "Tozalash"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "O‘chirish"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "Jadvalni tekshirish"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Jadvalni optimallashtirish"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "Jadvalni tiklash"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "Jadval tahlili"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "Ushbu jadvalga o‘tish"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "Ma`lumotlar lug‘ati"
@@ -750,10 +763,10 @@ msgstr "Kuzatilgan jadvallar"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "Ma`lumotlar bazasi"
@@ -761,36 +774,36 @@ msgstr "Ma`lumotlar bazasi"
msgid "Last version"
msgstr "Oxirgi vеrsiya"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "Tuzildi"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "Yangilandi"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "Holat"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "Amal"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "faol"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "faol emas"
@@ -798,11 +811,11 @@ msgstr "faol emas"
msgid "Versions"
msgstr "Vеrsiyalar"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "Kuzatish hisoboti"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "Tuzilma rasmi"
@@ -810,8 +823,8 @@ msgstr "Tuzilma rasmi"
msgid "Untracked tables"
msgstr "Kuzatilmagan jadvallar"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "Jadvalni kuzatish"
@@ -870,8 +883,8 @@ msgstr "Damp \"%s\" faylida saqlandi."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@@ -946,6 +959,13 @@ msgstr ""
"Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha "
"phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi."
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "SQL so‘rovi muvaffaqiyatli bajarildi"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -973,275 +993,293 @@ msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
"\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
#| msgid "Procedures"
msgid "Dropping Procedure"
msgstr "Muolajalar"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Deleting tracking data"
msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr ""
"Ushbu operatsiyani bajarish uzoq vaqt talab qilishi mumkin. Davom etsinmi? "
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "Siz BLOB omborini FAOLSIZLANTIRMOQCHISIZ!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
"Siz haqiqatdan ham \"%s\" bazasi uchun barcha BLOB murojaatlarini bekor "
"qilmoqchimisiz?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "Formaning kerakli maydonlari to‘ldirilmagan!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "Son kiriting!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "Xost nomi bo‘sh!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "Foydalanuvchi nomi belgilanmagan!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "Parol belgilanmagan!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "Kiritilgan parollar bir xil emas!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
#| msgid "Create version"
msgid "Create User"
msgstr "Vеrsiyasini tuzish"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
#| msgid "Reloading the privileges"
msgid "Reloading Privileges"
msgstr "Privilegiyalar qayta yuklanmoqda"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "Belgilangan foydalanuvchilarni o‘chirish"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "Yopish"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "Bekor qilish"
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
#| msgid "Load"
msgid "Loading"
msgstr "Yuklash"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "Jarayonlar"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "OK"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "Kodirovka"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "Jadvalda, hech bo‘lmaganda, bitta maydon bo‘lishi shart."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
#| msgid "Create table"
msgid "Create Table"
msgstr "Jadval tuzish"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "Qidirish"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide query box"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
#| msgid "SQL Query box"
msgid "Show query box"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "Jadval turlari"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "Saqlash"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Yashirish"
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
#| msgid "SQL Query box"
msgid "Hide search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
#| msgid "SQL Query box"
msgid "Show search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "E`tibor bermaslik"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "Bog‘liq kalitni tanlang"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "Tashqi kalitni tanlang"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
"Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Ko‘rsatiladigan maydonni tanlash"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Parol o‘rnatish"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generatsiya qilish"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolni o‘zgartirish"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dush"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1252,125 +1290,131 @@ msgstr ""
"sanada chiqarilgan."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Oxirgi versiyani tekshirish"
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Go to database"
+msgid "up to date"
+msgstr "Ushbu bazaga o‘tish"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Sadaqa"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Orqaga"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "Keyingi"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jami"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Ikkilik"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "May"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Iyun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Iyul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avg"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Yanv"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1378,178 +1422,178 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Iyun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Iyul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Avg"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Noya"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Yaksh"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dush"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sesh"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Yaksh"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Dush"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Sesh"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Chor"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Pay"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Shan"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Yaksh"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dush"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sesh"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Chor"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pay"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Shan"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Viki"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ishlatilmoqda"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1606,33 +1650,33 @@ msgid "No index defined!"
msgstr "Indeks belgilanmagan!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "Indekslar"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "Unikal"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "Qisilgan"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "Elementlar soni"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "Izoh"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tahrirlash"
@@ -1654,18 +1698,18 @@ msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "Ma`lumotlar bazalari"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Xatolik"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -1673,7 +1717,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d ta qatorlarga ta`sir etdi."
msgstr[1] "%1$d ta qatorlarga ta`sir etdi."
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -1681,7 +1725,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d ta qatorlar o‘chirildi."
msgstr[1] "%1$d ta qatorlar o‘chirildi."
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -1774,8 +1818,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@@ -1928,19 +1972,19 @@ msgstr "Jadvallar"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "Ma`lumotlar"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Jami"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "Fragmentlangan"
@@ -2043,18 +2087,18 @@ msgstr ""
"konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "Server"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr ""
"phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli "
"belgilangan:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr " \"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur."
@@ -2089,7 +2133,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentatsiya"
@@ -2243,7 +2287,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "Tuzilishi"
@@ -2278,7 +2322,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Yuklash katalogidan"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi"
@@ -2449,7 +2493,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "Tozalash"
@@ -2586,7 +2630,7 @@ msgid "Compress on the fly"
msgstr "Biryo‘la qisish"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "Konfiguratsion fayl"
@@ -2729,7 +2773,7 @@ msgid "Character set of the file"
msgstr "Fayl kodirovkasi"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "Format"
@@ -3054,7 +3098,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "Navigatsiya paneli ko‘rinishini sozlash"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "Serverlar"
@@ -3885,7 +3929,7 @@ msgstr "\"SweKey\" konfiguratsiya fayli"
msgid "Authentication method to use"
msgstr "Foydalaniladigan autentifikatsiya usuli"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "Autentifikatsiya usuli"
@@ -3971,9 +4015,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 ""
-"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
-"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
-"com/19588]\"MySQL Bugs\"[/a]larga qarang"
+"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
+"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
+"larga qarang"
#: libraries/config/messages.inc.php:381
msgid "Disable use of INFORMATION_SCHEMA"
@@ -4063,8 +4107,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
-"[kbd]\"pma_pdf_pages\"[/kbd]"
+"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]"
+"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:398
msgid "PDF schema: pages table"
@@ -4078,8 +4122,8 @@ msgid ""
msgstr ""
"Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
-"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
-"[kbd]\"phpmyadmin\"[/kbd]"
+"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]"
+"\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:400
#, fuzzy
@@ -4154,8 +4198,8 @@ msgstr "SSL ulanishdan foydalanish"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
-"[kbd]\"pma_table_coords\"[/kbd]"
+"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
+"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:415
msgid "PDF schema: table coordinates"
@@ -4430,9 +4474,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "Parol"
@@ -4452,8 +4496,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "Foydalanuvchi"
@@ -4582,7 +4626,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "Kengaytirilgan ibora"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "Oxirgi versiyani tekshirish"
@@ -4751,7 +4795,7 @@ msgstr "Hodisalar"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "Nomi"
@@ -4774,8 +4818,8 @@ msgid "Designer"
msgstr "Dizayner"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "Privilegiyalar"
@@ -4787,13 +4831,13 @@ msgstr "Muolajalar"
msgid "Return type"
msgstr "Qaytariladigan tip"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
-"Taxminiy bo‘lishi mumkin. [a@./Documentation."
-"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
+"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
+"\"FAQ 3.11\"[/a]ga qarang"
#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
msgid "Connection for controluser as defined in your configuration failed."
@@ -4810,23 +4854,23 @@ msgstr "Server javob bermayapti"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "Tafsilotlar..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "Parolni o‘zgartirish"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "Parol yo‘q"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "Tasdiqlash"
@@ -4850,7 +4894,7 @@ msgid "Create"
msgstr "Tuzish"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "Privilegiyalar yo‘q"
@@ -4985,8 +5029,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
"hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar "
@@ -5009,7 +5053,7 @@ msgstr "Siqish"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "Yo‘q"
@@ -5215,7 +5259,7 @@ msgstr "Indeks bo‘yicha sortirovka qilish"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "Parametrlar"
@@ -5254,66 +5298,66 @@ msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish"
msgid "Browser transformation"
msgstr "O‘girish"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "Yozuv o‘chirildi"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Tugatish"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "so‘rov bo‘yicha"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "Yozuvlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "jami"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "So‘rov %01.4f sekund vaqt oldi"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "O‘zgartirish"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "So‘rov natijalarini ishlatish"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "Chop etish versiyasi (to‘la)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-sxemani ko‘rsatish"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Vеrsiyasini tuzish"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "Aloqa topilmadi"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "Versiya haqida ma`lumot"
@@ -5756,8 +5800,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5880,9 +5924,9 @@ msgstr "Mavjud MIME turlari"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "Xost"
@@ -5893,7 +5937,7 @@ msgid "Generation Time"
msgstr "Tuzilgan sana "
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "Server versiyasi"
@@ -6248,7 +6292,32 @@ msgstr "Yo‘q"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Jum"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "Bajarish"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Apply index(s)"
+msgid "Add prefix"
+msgstr "Indеks(lar)ni saqlash"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "O‘zgarish yo‘q"
@@ -6564,8 +6633,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "Foydalanuvchi nomi"
@@ -6586,7 +6655,7 @@ msgstr "O‘zgaruvchi"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "Qiymati"
@@ -6606,34 +6675,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "Har qaysi foydalanuvchi"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "Matnmaydonini ishlatish"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "Har qaysi xost"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "Lokal"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "Ushbu xost"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "Xostlar jadvalidan foydalanish"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6701,7 +6770,7 @@ msgstr "Atributlar"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "Qo‘shimcha"
@@ -6804,12 +6873,12 @@ msgid "Toggle scratchboard"
msgstr "Ko‘rsatish"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "Noma`lum til: %1$s."
@@ -6886,7 +6955,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "Tozalash"
@@ -6920,10 +6989,6 @@ msgstr "Taqsimlovchi"
msgid " Show this query here again "
msgstr "Ushbu so‘rovni qayta ko‘rsatish"
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "Bajarish"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "Faqat ko‘rish"
@@ -6932,7 +6997,7 @@ msgstr "Faqat ko‘rish"
msgid "Location of the text file"
msgstr "Faylni tanlash"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Yuklash katalogidan"
@@ -6983,19 +7048,19 @@ msgstr "BEGIN RAW"
msgid "END RAW"
msgstr "END RAW"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "Yopilmagan qo‘shtirnoq"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "Noto‘g‘ri identifikator"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "Noma`lum punktuatsiya"
@@ -7050,7 +7115,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "Indeks"
@@ -7099,12 +7164,12 @@ msgid "As defined:"
msgstr "Qoidaga ko‘ra:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "Birlamchi"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "Matn to‘laligicha"
@@ -7118,7 +7183,7 @@ msgstr ""
"namoyishi funksiyalarining ishi yaqin orada tavsiflanadi. "
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "Jadval turi"
@@ -7126,13 +7191,13 @@ msgstr "Jadval turi"
msgid "PARTITION definition"
msgstr "Bo‘laklarni (PARTITIONS) belgilash"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Ustun(lar) qo‘shish"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -7364,83 +7429,83 @@ msgstr "ZIP-arxiv ichida fayl mavjud emas!"
msgid "Error in ZIP archive:"
msgstr "Ushbu ZIP arxivda xatolik:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "Aloqalarning asosiy imkoniyatlari"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL bilan ulanishni chog‘ishtirish"
-#: main.php:122
+#: main.php:119
#, fuzzy
#| msgid "Other core settings"
msgid "Appearance Settings"
msgstr "Boshqa sozlanishlar"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "settings"
msgid "More settings"
msgstr "tanlovlar"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "Protokol versiyasi"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "Foydalanuvchi"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL-kodirovka"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "Veb server"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL-kliyent versiyasi"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP kengaytmasi"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "PHP haqida ma`lumotni ko‘rsatish"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "Viki"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr " phpMyAdmin rasmiy veb-sahifasi"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atributlar"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr ""
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "O‘zgarish yo‘q"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -7453,7 +7518,7 @@ msgstr ""
"shuning uchun \"root\" superfoydalanuvchisiga parol o‘rnatish qat`iyan "
"tavsiya etiladi."
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -7463,7 +7528,7 @@ msgstr ""
"func_overload parametri yoqilgan. Ma`lumot yo‘qolishi oldini olish uchun, "
"ushbu parametr o‘chirilishi kerak!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -7474,7 +7539,7 @@ msgstr ""
"navbatida ma`lumot yo‘qolishiga olib kelishi mumkin. PHP \"mbstring\" "
"kengaytmasini o‘rnatish qat`iy tavsiya etiladi."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7487,7 +7552,7 @@ msgstr ""
"davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin "
"dasturida konfiguratsiya qilganingizdan tezroq tugaydi."
-#: main.php:288
+#: main.php:271
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@@ -7504,13 +7569,13 @@ msgstr ""
"davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin "
"dasturida konfiguratsiya qilganingizdan tezroq tugaydi."
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi $cfg"
"[\"blowfish_secret\"] direktivasi qiymatini o‘rnatib parol belgilash kerak."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -7520,7 +7585,7 @@ msgstr ""
"katalogi haliyam mavjud. phpMyAdmin muvaffaqiyatli o‘rnatilgandan keyin, uni "
"o‘chirish tavsiya etiladi."
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7532,7 +7597,7 @@ msgstr ""
"Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. "
"Sabablarini aniqlash uchun %sbu yerga%s bosing."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -7542,7 +7607,7 @@ msgstr ""
"dasturining ba’zi funktsiyalari ishlamaydi. Masalan, navigatsiya oynasi "
"avtomatik tarzda yangilanib turmaydi."
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -7551,7 +7616,7 @@ msgstr ""
"MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s\")"
"dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin."
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7574,14 +7639,14 @@ msgstr "Filtr"
msgid "filter tables by name"
msgstr "jadval nomi"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Jadval tuzish"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "Ma`lumotlar bazasini tanlang"
@@ -7988,76 +8053,76 @@ msgid "Includes all privileges except GRANT."
msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi"
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi"
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi"
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi"
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi"
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "Yangi jadvallar tuzishga ruxsat beradi"
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi"
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
"Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi"
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi"
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi"
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi"
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "Jadvallarni o‘chirishga rux`sat beradi"
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi"
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi"
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
@@ -8065,35 +8130,35 @@ msgstr ""
"privilegiyalar qo‘shishga ruxsat beradi"
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi"
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi"
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi"
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
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:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
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:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
@@ -8101,65 +8166,65 @@ msgstr ""
"Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval "
"yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni"
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
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:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!"
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
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:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
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:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr ""
"Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak"
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "Ma`lumotlarni chaqirishga ruxsat beradi"
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi"
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "Server ishini yakunlashga ruxsat beradi"
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -8171,14 +8236,14 @@ msgstr ""
"o‘chirish)"
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
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:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi"
@@ -8193,197 +8258,197 @@ msgctxt "None privileges"
msgid "None"
msgstr "Yo‘q"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "Jadval darajasijagi privilegiyalar"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi."
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "Global privilegiyalar"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "Ma`lumotlar bazasi privilegiyalari"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "Administratsiya"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "Global privilegiyalar"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "Ma`lumotlar bazasi privilegiyalari"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "Resurslardan foydalanishni cheklash"
-#: server_privileges.php:642
+#: server_privileges.php:612
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:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "Foydalanuvchi hisobi haqida ma`lumot"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "Parolni o‘zgartirmaslik"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "Bironta ham foydalanuvchi topilmadi."
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr " \"%s\" nomli foydalanuvchi mavjud!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "Siz yangi foydalanuvchi qo‘shdingiz."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr " \"%s\" uchun privilegiyalar o‘zgartirildi."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr " \"%s\" foydalanuvchining privilegiyalari bekor qilindi."
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "\"%s\" o‘chirilmoqda"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "Privilegiyalar qayta yuklanmoqda"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "Privilegiyalarni tahrirlash"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "Bekor qilish"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "Har qaysi"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "Foydalanuvchilar hisobini ko‘rib chiqish"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "GRANT"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "Belgilangan foydalanuvchilarni o‘chirish"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
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:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
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:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "Maydon privilegiyalari"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
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:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "Quyidagi jadvalga privilegiya qo‘shish"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr " va eskisini saqlash."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " va foydalanuvchilar jadvalidan eskisini o‘chirish."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
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:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
@@ -8391,48 +8456,48 @@ msgstr ""
", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta "
"yuklash."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "Foydalanuvchi uchun ma`lumotlar bazasi"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Yo‘q"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
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:2146
+#: server_privileges.php:2119
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:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "Global"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "Ma`lumotlar bazasi darajasida"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "Guruhlash belgisi"
@@ -9631,7 +9696,7 @@ msgstr "Sessiya qiymatlari"
msgid "Global value"
msgstr "Global qiymat"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "Yuklab olish"
@@ -9677,55 +9742,67 @@ msgstr ""
msgid "Insecure connection"
msgstr "Noxavfsiz ulanish"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration file"
+msgid "Configuration saved."
+msgstr "Konfiguratsion fayl"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "Ko‘rib chiqish"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "Yashirin xabarlarni ko‘rsatish (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "Yangi server"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "Til"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "foydalanuvchiga tanlash imkonini berish"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- yo‘q -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "Server"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "Satr oxiri"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "Ko‘rsatish"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "Yuklash"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin sayti"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "Sadaqa"
@@ -9929,9 +10006,9 @@ msgstr ""
#| "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. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
-#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
-#| "[/kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
+#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
+#| "kbd]."
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. "
@@ -9945,9 +10022,9 @@ msgstr ""
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
-"oshirishi mumkin. Server [a@?page=servers&mode=edit&id="
-"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
-"[/kbd] deb belgilash tavsiya etiladi."
+"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
+"kbd] deb belgilash tavsiya etiladi."
#: setup/lib/index.lib.php:270
#, fuzzy, php-format
@@ -10048,64 +10125,64 @@ msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi"
msgid "Function"
msgstr "Funksiya"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr "Ma`lumotlar ko‘pligi sabali
o‘zgartirish qiyishlashishi mumkin"
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "BLOB ombori murojaatlarini o‘chirish"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "BLOB omboriga yuklash"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "Yozuv kiritish"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "Kiritilgan so‘rovni ko‘rsatish"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "va so‘ng"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "Oldingi sahifaga o‘tish"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "Yangi yozuv kiritish"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "Ushbu sahifaga qaytish"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "Keyingi qatorni tahrirlash"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan "
"foydalaning"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, fuzzy, php-format
#| msgid "Restart insertion with %s rows"
msgid "Continue insertion with %s rows"
@@ -10126,8 +10203,8 @@ msgid ""
"The result of this query can't be used for a chart. See [a@./Documentation."
"html#faq6_29@Documentation]FAQ 6.29[/a]"
msgstr ""
-"Taxminiy bo‘lishi mumkin. [a@./Documentation."
-"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
+"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
+"\"FAQ 3.11\"[/a]ga qarang"
#: tbl_chart.php:90
msgid "Width"
@@ -10270,7 +10347,7 @@ msgstr "(\"PRIMARY\" nomi faqat birlamchi indeksgaega bo‘lishi shart!)"
msgid "Add to index %s column(s)"
msgstr " \"%s\" maydon(lar)ini indeksga qo‘shish"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "Ustunlar soni noldan ko‘p bo‘lishi shart."
@@ -10296,103 +10373,103 @@ msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi."
msgid "The table name is empty!"
msgstr "Jadval nomi ko‘rsatilmagan!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "Jadval sortirovkasini o‘zgartirish"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(ustun)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "Jadvalni (ma`lumotlar bazasi.jadval) ga ko‘chirish:"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "Jadval parametrlari"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "Jadval nomini o‘zgartirish"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish:"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "Nusxa olingan jadvalga o‘tish"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "Jadvalga xizmat ko‘rsatish"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "Jadvalni defragmentatsiyalash"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "\"%s\" jadvali keshi yangilandi"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Jadval keshini yangilash (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Ushbu bazaga o‘tish"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "bo‘laklarga xizmat ko‘rsatish"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "\"%s\" bo‘lagi"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "Tahlil"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "Tekshirish"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "Optimizatsiya"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "Qayta qurish"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "Tiklash"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "Bo‘laklarni (PARTITIONS) o‘chirish"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "Ma`lumotlar yaxlitligini tekshirish:"
@@ -10400,39 +10477,39 @@ msgstr "Ma`lumotlar yaxlitligini tekshirish:"
msgid "Show tables"
msgstr "Jadvallarni ko‘rsatish"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "Foydalanilayotgan joy"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "Ishlatilish"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "Effektivlik"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "Qatorlar statistikasi"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "Tavsif"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "statik"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "Qator uzunligi"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "Qator hajmi"
@@ -10525,57 +10602,57 @@ msgstr "Yo‘q"
msgid "Column %s has been dropped"
msgstr "\"%s\" jadvali o‘chirildi"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr " \"%s\" ga birlamchi kalit qo‘shildi"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr " \"%s\" uchun indeks qo‘shildi"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show versions"
msgid "Show more actions"
msgstr "Vеrsiyalarni ko‘rsatish"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "Aloqalarni ko‘rish"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "Jadval tuzilishi tahlili"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add column(s)"
msgid "Add column"
msgstr "Ustun(lar) qo‘shish"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "Jadval oxiriga"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "Jadval boshiga"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr " \"%s\" dan keyin"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "\"%s\" maydon uchun indeks tuzish"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "bo‘laklarga bo‘lingan"
@@ -10603,7 +10680,7 @@ msgstr "\"%s.%s\" ni kuzatish, %s vеrsiya faollashtirilgan."
msgid "SQL statements executed."
msgstr "SQL so‘rovi bajarildi."
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
@@ -10611,101 +10688,131 @@ msgstr ""
"Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning "
"uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak."
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying."
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring."
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "%s vеrsiya rasmi (SQL kodi)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Ignore errors"
+msgid "Query error"
+msgstr "Xatolarga e`tibor bermaslik"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "Kuzatish opеratorlari"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "Ma`lumotlar bazasi mavjud emas"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "Sanani"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "Ma’lumotlar ta’rifi opеratorini"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "Ma’lumotlarni boshqarish opеratorini"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL dampi (faylni yuklab olish)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL damp"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi."
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "SQL bajaruvi"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "\"%s\" dеb eksport qilish"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "Vеrsiyalarni ko‘rsatish"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "Vеrsiya"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "Hozir faolsizlantirish"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "\"%s.%s\" jadvalini kuzatishni faollashtirish"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "Hozir faollashtirish"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "Vеrsiyasini tuzish"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 04ddf45985..3aa136483e 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
-"PO-Revision-Date: 2011-03-04 09:47+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
+"PO-Revision-Date: 2011-05-06 03:13+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
-"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "全部显示"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "搜索"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "搜索"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "执行"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "键名"
@@ -117,17 +117,17 @@ msgstr "该系统不支持 %s 文件,请访问 www.phpmyadmin.net 查询更多
msgid "Database %1$s has been created."
msgstr "创建数据库 %1$s 成功。"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "数据库注释:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "表注释"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "表注释"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "字段"
@@ -146,11 +146,11 @@ msgstr "字段"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "类型"
@@ -160,8 +160,8 @@ msgstr "类型"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "空"
@@ -171,7 +171,7 @@ msgstr "空"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "默认"
@@ -194,39 +194,40 @@ msgstr "链接到"
msgid "Comments"
msgstr "注释"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr "否"
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr "是"
@@ -238,8 +239,8 @@ msgstr "打印"
msgid "View dump (schema) of database"
msgstr "查看数据库的转存(大纲)。"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "数据库中没有表。"
@@ -265,85 +266,85 @@ msgstr "已将数据库 %s 改名为 %s"
msgid "Database %s has been copied to %s"
msgstr "已将数据库 %s 复制为 %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "将数据库改名为"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "命令"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "删除数据库"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "已被删除数据库 %s 。"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "删除数据库 (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "复制数据库到"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "仅结构"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "结构和数据"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "仅数据"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "复制前创建数据库 (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "添加 %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "添加自增 (AUTO_INCREMENT) 值"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "强制添加"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "切换到复制的数据库"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "整理"
-#: db_operations.php:556
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。"
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "编辑或导出关系大纲"
@@ -351,17 +352,17 @@ msgstr "编辑或导出关系大纲"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "表"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "行数"
@@ -377,21 +378,21 @@ msgstr "使用中"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "创建时间"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "最后更新"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "最后检查"
@@ -401,97 +402,90 @@ msgid "%s table"
msgid_plural "%s tables"
msgstr[0] "%s 张表"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "您的 SQL 语句已成功运行"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "您最少要选择显示一列"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "切换到"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr "可视化查询生成器"
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "排序"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "递增"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "递减"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "显示"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "条件"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "插入"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "与"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "删除"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "或"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "修改"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "添加/删除标准行"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "添加/删除字段"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "更新查询"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "使用表"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "在数据库 %s 执行 SQL 语句:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "提交查询"
@@ -531,7 +525,7 @@ msgstr[0] "在表 %2$s 中找到 %1$s 个匹配"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "浏览"
@@ -540,14 +534,15 @@ msgstr "浏览"
msgid "Delete the matches for the %s table?"
msgstr "删除 %s 表中所有匹配的记录?"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "删除"
@@ -585,17 +580,17 @@ msgstr "包含字段:"
msgid "No tables found in database"
msgstr "没有在数据库中找到表"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "已清空表 %s "
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "已删除视图 %s"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "已删除表 %s "
@@ -608,11 +603,11 @@ msgstr "追踪已启用。"
msgid "Tracking is not active."
msgstr "追踪已禁用。"
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "该视图最少包含的行数,参见%s文档%s。"
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -636,22 +631,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 服务器的默认存储引擎。"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "选中项:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "全选"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "全不选"
@@ -660,16 +655,16 @@ msgid "Check tables having overhead"
msgstr "仅选择多余"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "导出"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "打印预览"
@@ -681,28 +676,46 @@ msgstr "清空"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "删除"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "检查表"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "优化表"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "修复表"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "分析表"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+#, fuzzy
+#| msgid "Go to table"
+msgid "Add prefix to table"
+msgstr "转到数据表"
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "将表的数据用此文件替换"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "将表的数据用此文件替换"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "数据字典"
@@ -716,10 +729,10 @@ msgstr "已追踪的表"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "数据库"
@@ -727,36 +740,36 @@ msgstr "数据库"
msgid "Last version"
msgstr "最新版本"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "创建"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "更新"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "状态"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "操作"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "删除追踪数据"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "启用"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "禁用"
@@ -764,11 +777,11 @@ msgstr "禁用"
msgid "Versions"
msgstr "版本"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "追踪报告"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "结构快照"
@@ -776,8 +789,8 @@ msgstr "结构快照"
msgid "Untracked tables"
msgstr "未追踪的表"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
msgid "Track table"
msgstr "追踪表"
@@ -834,8 +847,8 @@ msgstr "转存已经保存到文件 %s 中。"
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -898,6 +911,13 @@ msgstr ""
"在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin "
"将无法完成导入操作。"
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "您的 SQL 语句已成功运行"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -922,223 +942,241 @@ msgstr "点击取消"
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。"
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "您真的要"
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "您将要删除一个完整的数据库!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "您将要删除一个完整的数据库!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "您将要删除一个完整的数据库!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr "正在删除事件"
-#: js/messages.php:33
+#: js/messages.php:35
msgid "Dropping Procedure"
msgstr "正在删除存储过程"
-#: js/messages.php:35
+#: js/messages.php:37
msgid "Deleting tracking data"
msgstr "正在删除追踪数据"
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr "正在删除主键"
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "该操作可能需要执行较长时间,确定执行?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr "您正准备禁用 BLOB 容器!"
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr "您确定要在数据库 %s 上禁用 BLOB 功能?"
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "表单内缺少值!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "这不是一个数字!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "主机名不能为空!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "用户名不能为空!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "密码不能为空!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "两次密码不一致!"
-#: js/messages.php:52
+#: js/messages.php:54
msgid "Add a New User"
msgstr "添加新用户"
-#: js/messages.php:53
+#: js/messages.php:55
msgid "Create User"
msgstr "新建用户"
-#: js/messages.php:54
+#: js/messages.php:56
msgid "Reloading Privileges"
msgstr "重新载入权限"
-#: js/messages.php:55
+#: js/messages.php:57
msgid "Removing Selected Users"
msgstr "正在删除选中的用户"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr "关闭"
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr "取消"
-#: js/messages.php:63
+#: js/messages.php:65
msgid "Loading"
msgstr "正在加载"
-#: js/messages.php:64
+#: js/messages.php:66
msgid "Processing Request"
msgstr "正在处理请求"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr "处理请求时发生错误"
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr "正在删除字段"
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr "正在添加主键"
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "确定"
-#: js/messages.php:71
+#: js/messages.php:73
msgid "Renaming Databases"
msgstr "正在重命名数据库"
-#: js/messages.php:72
+#: js/messages.php:74
msgid "Reload Database"
msgstr "重新载入数据库"
-#: js/messages.php:73
+#: js/messages.php:75
msgid "Copying Database"
msgstr "正在复制数据库"
-#: js/messages.php:74
+#: js/messages.php:76
msgid "Changing Charset"
msgstr "正在修改字符集"
-#: js/messages.php:75
+#: js/messages.php:77
msgid "Table must have at least one column"
msgstr "数据表至少要有一个字段。"
-#: js/messages.php:76
+#: js/messages.php:78
msgid "Create Table"
msgstr "新建数据表"
-#: js/messages.php:81
+#: js/messages.php:83
msgid "Searching"
msgstr "正在搜索"
-#: js/messages.php:86
+#: js/messages.php:88
msgid "Hide query box"
msgstr "隐藏查询框"
-#: js/messages.php:87
+#: js/messages.php:89
msgid "Show query box"
msgstr "显示查询框"
-#: js/messages.php:88
+#: js/messages.php:90
msgid "Inline Edit"
msgstr "快速编辑"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "保存"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "隐藏"
-#: js/messages.php:93
+#: js/messages.php:95
msgid "Hide search criteria"
msgstr "隐藏搜索条件"
-#: js/messages.php:94
+#: js/messages.php:96
msgid "Show search criteria"
msgstr "显示搜索条件"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr "选择外键"
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr "选择外键"
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr "请选择主键或唯一键"
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "选择要显示的字段"
#: js/messages.php:106
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
+msgstr ""
+
+#: js/messages.php:109
msgid "Add an option for column "
msgstr "给字段添加选项 "
-#: js/messages.php:109
+#: js/messages.php:112
msgid "Generate password"
msgstr "生成密码"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "生成"
-#: js/messages.php:111
+#: js/messages.php:114
msgid "Change Password"
msgstr "修改密码"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
msgid "More"
msgstr "更多"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1146,254 +1184,260 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
msgid ", latest stable version:"
msgstr ",最新稳定版本: "
+#: js/messages.php:123
+#, fuzzy
+#| msgid "Jump to database"
+msgid "up to date"
+msgstr "转到数据库"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
msgid "Done"
msgstr "完成"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
msgid "Prev"
msgstr "上个月"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "下个月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
msgid "Today"
msgstr "今天"
-#: js/messages.php:146
+#: js/messages.php:150
msgid "January"
msgstr "一月"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr "二月"
-#: js/messages.php:148
+#: js/messages.php:152
msgid "March"
msgstr "三月"
-#: js/messages.php:149
+#: js/messages.php:153
msgid "April"
msgstr "四月"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "五月"
-#: js/messages.php:151
+#: js/messages.php:155
msgid "June"
msgstr "六月"
-#: js/messages.php:152
+#: js/messages.php:156
msgid "July"
msgstr "七月"
-#: js/messages.php:153
+#: js/messages.php:157
msgid "August"
msgstr "八月"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr "九月"
-#: js/messages.php:155
+#: js/messages.php:159
msgid "October"
msgstr "十月"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr "十一月"
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:186
+#: js/messages.php:190
msgid "Sunday"
msgstr "星期日"
-#: js/messages.php:187
+#: js/messages.php:191
msgid "Monday"
msgstr "星期一"
-#: js/messages.php:188
+#: js/messages.php:192
msgid "Tuesday"
msgstr "星期二"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr "星期三"
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr "星期四"
-#: js/messages.php:191
+#: js/messages.php:195
msgid "Friday"
msgstr "星期五"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "周六"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr "周"
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr "时"
-#: js/messages.php:229
+#: js/messages.php:233
msgid "Minute"
msgstr "分"
-#: js/messages.php:230
+#: js/messages.php:234
msgid "Second"
msgstr "秒"
@@ -1444,33 +1488,33 @@ msgid "No index defined!"
msgstr "没有已定义的索引!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "索引"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "唯一"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr "紧凑"
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "基数"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
msgid "Comment"
msgstr "注释"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "编辑"
@@ -1492,30 +1536,30 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "数据库"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "错误"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "影响了 %1$d 行。"
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "删除了 %1$d 行。"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -1606,8 +1650,8 @@ msgstr "欢迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
@@ -1752,19 +1796,19 @@ msgstr "数据表"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "数据"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "总计"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "多余"
@@ -1849,16 +1893,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "无效的主机名 %1$s,请检查配置文件。"
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "服务器"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "配置文件中设置的认证方式无效:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "您应升级到 %s %s 或更高版本。"
@@ -1893,7 +1937,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "文档"
@@ -2041,7 +2085,7 @@ msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s"
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "结构"
@@ -2075,7 +2119,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "从网站服务器上传文件夹 %s 中选择:"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "用于上传的文件夹出错,无法使用"
@@ -2233,7 +2277,7 @@ msgstr "允许用户自定义该值"
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "重置"
@@ -2355,7 +2399,7 @@ msgid "Compress on the fly"
msgstr "实时压缩"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr "配置文件"
@@ -2480,7 +2524,7 @@ msgid "Character set of the file"
msgstr "文件字符集"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "格式"
@@ -2781,7 +2825,7 @@ msgid "Customize appearance of the navigation frame"
msgstr "自定义导航框架"
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr "服务器"
@@ -3123,7 +3167,7 @@ msgstr "树状数据库分隔符"
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
-msgstr "只使用轻量级版本,以树形显示数据库 (以下面的树形分隔符来显示)"
+msgstr "只使用简洁版,以树形显示数据库 (以下面的树形分隔符来显示)"
#: libraries/config/messages.inc.php:273
msgid "Display databases in a tree"
@@ -3135,7 +3179,7 @@ msgstr "如果想一次性浏览所有数据库,则禁用该选项"
#: libraries/config/messages.inc.php:275
msgid "Use light version"
-msgstr "使用轻量级版本"
+msgstr "使用简洁版"
#: libraries/config/messages.inc.php:276
msgid "Maximum table tree depth"
@@ -3517,7 +3561,7 @@ msgstr "SweKey 配置文件"
msgid "Authentication method to use"
msgstr "要使用的认证方式"
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr "认证方式"
@@ -3990,9 +4034,9 @@ msgstr "需要启用 SQL 校验器"
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "密码"
@@ -4013,8 +4057,8 @@ msgid ""
msgstr ""
"如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])"
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
msgid "Username"
msgstr "用户名"
@@ -4134,7 +4178,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr "为多个语句输出更多信息"
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr "检查更新"
@@ -4283,7 +4327,7 @@ msgstr "事件"
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "名字"
@@ -4306,8 +4350,8 @@ msgid "Designer"
msgstr "设计器"
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "权限"
@@ -4319,7 +4363,7 @@ msgstr "常规"
msgid "Return type"
msgstr "返回类型"
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4339,23 +4383,23 @@ msgstr "服务器没有响应"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr "详细..."
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "修改密码"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "无密码"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "重新输入"
@@ -4377,7 +4421,7 @@ msgid "Create"
msgstr "创建"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "无权限"
@@ -4481,8 +4525,8 @@ msgstr ",@TABLE@ 将变成数据表名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
"列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。"
@@ -4502,7 +4546,7 @@ msgstr "压缩:"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "无"
@@ -4669,7 +4713,7 @@ msgstr "主键排序"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
msgid "Options"
msgstr "选项"
@@ -4702,62 +4746,62 @@ msgstr "显示 BLOB 内容"
msgid "Browser transformation"
msgstr "浏览器转换"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr "复制"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "已删除该行"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "杀死"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "查询中"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "显示行"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "总计"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "查询花费 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "修改"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "查询结果选项"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "打印预览 (全文显示)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
msgid "Display chart"
msgstr "显示图表"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
msgid "Create view"
msgstr "新建视图"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "找不到链接"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "版本信息"
@@ -5166,8 +5210,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。"
#: libraries/engines/pbxt.lib.php:129
@@ -5264,9 +5308,9 @@ msgstr "显示 MIME 类型"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "主机"
@@ -5277,7 +5321,7 @@ msgid "Generation Time"
msgstr "生成日期"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "服务器版本"
@@ -5616,7 +5660,32 @@ msgstr "无"
msgid "Convert to Kana"
msgstr "转换为假名"
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fr"
+msgid "From"
+msgstr "五"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "提交"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+#, fuzzy
+#| msgid "Add index"
+msgid "Add prefix"
+msgstr "添加索引"
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "无更改"
@@ -5922,8 +5991,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "用户名"
@@ -5944,7 +6013,7 @@ msgstr "变量"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "值"
@@ -5962,34 +6031,34 @@ msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。"
msgid "Add slave replication user"
msgstr "添加从复制用户"
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "任意用户"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "使用文本域"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "任意主机"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "本地"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "此主机"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "使用主机表"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6051,7 +6120,7 @@ msgstr "属性"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "额外"
@@ -6142,12 +6211,12 @@ msgid "Toggle scratchboard"
msgstr "切换草稿板"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "未知的语言:%1$s."
@@ -6220,7 +6289,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "在数据库 %s 运行 SQL 查询"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
msgid "Clear"
msgstr "清除"
@@ -6252,10 +6321,6 @@ msgstr "语句定界符"
msgid " Show this query here again "
msgstr " 在此再次显示此查询 "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "提交"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "仅查看"
@@ -6264,7 +6329,7 @@ msgstr "仅查看"
msgid "Location of the text file"
msgstr "文本文件的位置"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "网站服务器上传文件夹"
@@ -6311,19 +6376,19 @@ msgstr "开始原文"
msgid "END RAW"
msgstr "结束原文"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr "自动在查询结尾闭合了引号!"
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "引号不配对"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "无效的标识符"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "未知的标点符号字符串"
@@ -6366,7 +6431,7 @@ msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号,
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "索引"
@@ -6409,12 +6474,12 @@ msgid "As defined:"
msgstr "定义:"
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "主键"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "全文搜索"
@@ -6426,7 +6491,7 @@ msgid ""
msgstr "此转换没有说明。
详细功能请询问 %s 的作者。"
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "存储引擎"
@@ -6434,12 +6499,12 @@ msgstr "存储引擎"
msgid "PARTITION definition"
msgstr "分区定义"
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, php-format
msgid "Add %s column(s)"
msgstr "添加 %s 个字段"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
msgid "You have to add at least one column."
msgstr "至少要添加一个字段。"
@@ -6598,73 +6663,73 @@ msgstr "ZIP 包中未找到文件!"
msgid "Error in ZIP archive:"
msgstr "ZIP 包中有错误:"
-#: main.php:68
+#: main.php:65
msgid "General Settings"
msgstr "常规设置"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL 连接校对"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr "外观设置"
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
msgid "More settings"
msgstr "更多设置"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "协议版本"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "用户"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL 字符集"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr "网站服务器"
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL 客户端版本"
-#: main.php:206
+#: main.php:189
msgid "PHP extension"
msgstr "PHP 扩展"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "显示 PHP 信息"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr "维基 (Wiki) (外链,英文)"
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "官方主页 (外链,英文)"
-#: main.php:231
+#: main.php:214
msgid "Contribute"
msgstr "贡献"
-#: main.php:232
+#: main.php:215
msgid "Get support"
msgstr "获取支持"
-#: main.php:233
+#: main.php:216
msgid "List of changes"
msgstr "更新列表"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6675,7 +6740,7 @@ msgstr ""
"务器使用默认值运行当然没有问题,不过这样的话,被入侵的可能性会很大,我们强烈"
"建议您应该立即给 'root' 用户设置一个密码来补上这个安全漏洞。"
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6684,7 +6749,7 @@ msgstr ""
"PHP 配置中已启用了 mbstring.func_overload 。这个选项和 phpMyAdmin 不兼容,可"
"能会导致一些数据损坏!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6693,7 +6758,7 @@ msgstr ""
"没有找到 PHP 扩展 mbstring,而您现在好像在使用多字节字符集。没有 mbstring 扩"
"展的 phpMyAdmin 不能正确分割字符串,可能产生意想不到的结果。"
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -6705,7 +6770,7 @@ msgstr ""
"phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 "
"phpMyAdmin 中设置的时间要更短。"
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@@ -6713,11 +6778,11 @@ msgstr ""
"phpMyAdmin 中所设置的登录 cookie 存储小于 cookie 有效期,因此您的登录过期时间"
"将会比您在 phpMyAdmin 中设置的时间要更短。"
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "配置文件现在需要一个短语密码。"
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@@ -6726,7 +6791,7 @@ msgstr ""
"安装时所用的 [code]config[/code] 文件夹尚未删除,如果 phpMyAdmin 已经安装配置"
"好,请立即删除该文件夹。"
-#: main.php:313
+#: main.php:296
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@@ -6734,7 +6799,7 @@ msgid ""
msgstr ""
"phpMyAdmin 高级功能未全部设置,部分功能不可用。要查出原因请%s点这里%s。"
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -6743,7 +6808,7 @@ msgstr ""
"你的浏览器不支持或禁用了 Javascript,部分 phpMyAdmin 功能将不可用。如导航框架"
"将不能自动刷新。"
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@@ -6752,7 +6817,7 @@ msgstr ""
"你的 PHP MySQL 库版本 %s 和你的 MySQL 服务器版本 %s 不同。这可能造成一些未知"
"的问题。"
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -6771,12 +6836,12 @@ msgstr "快速搜索"
msgid "filter tables by name"
msgstr "请输入部分或完整的表名"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
msgctxt "short form"
msgid "Create table"
msgstr "新建数据表"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "请选择数据库"
@@ -7138,163 +7203,163 @@ msgid "Includes all privileges except GRANT."
msgstr "除了授权 (GRANT) 以外的所有权限。"
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "允许修改现有数据表的结构。"
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "允许修改或删除储存过程。"
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "允许创建新数据库和数据表。"
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "允许创建存储过程。"
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "允许创建新数据表。"
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "允许创建临时表。"
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "允许创建、删除和重命名用户账户。"
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "允许创建视图。"
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "允许删除数据。"
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "允许删除数据库和数据表。"
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "允许删除数据表。"
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr "允许为事件触发器设置事件"
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "允许运行存储过程。"
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "允许从文件中导入数据以及将数据导出至文件。"
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr "允许添加用户和权限,而不允许重新载入权限表。"
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "允许创建和删除索引。"
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "允许插入和替换数据。"
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "允许锁定当前线程的表。"
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "限制用户每小时打开的新连接数。"
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "限制用户每小时可发送到服务器的查询数。"
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。"
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "限制该用户的并发连接数。"
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr "允许查看所有用户的进程"
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "在此版本的 MySQL 中无效。"
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "允许重新载入服务器设置并刷新服务器的缓存。"
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "用户有权询问附属者/控制者在哪里。"
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "回复附属者所需。"
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "允许读取数据。"
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "允许访问完整的数据库列表。"
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "允许执行 SHOW CREATE VIEW 查询。"
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "允许关闭服务器。"
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7304,12 +7369,12 @@ msgstr ""
"管理操作是必需的。"
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
msgid "Allows creating and dropping triggers"
msgstr "允许创建和删除触发器"
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "允许修改数据。"
@@ -7322,228 +7387,228 @@ msgctxt "None privileges"
msgid "None"
msgstr "无"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "按表指定权限"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr " 注意:MySQL 权限名称会以英文显示 "
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "全局权限"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "按数据库指定权限"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "管理"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "全局权限"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "按数据库指定权限"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "资源限制"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "注意:若将这些选项设为 0(零) 即不限制。"
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "登录信息"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "保持原密码"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
msgid "No user found."
msgstr "未找到用户。"
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "用户 %s 己存在!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "您已添加了一个新用户。"
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "您已更新了 %s 的权限。"
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "您已撤销 %s 的权限"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s 的密码已修改。"
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "正在删除 %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "没有选择要删除的用户!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "重新载入权限"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "已成功删除选中的用户。"
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "已成功重新载入权限。"
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "编辑权限"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "撤销"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "任意"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "查看用户"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "授权"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "添加新用户"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "删除选中的用户"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "撤销用户所有权限,然后删除用户。"
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "删除与用户同名的数据库。"
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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。"
+"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
+"s。"
-#: server_privileges.php:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "在权限表内找不到选中的用户。"
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "按字段指定权限"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "在下列数据库添加权限"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义"
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "在下列数据表添加权限"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "修改登录信息/复制用户"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "创建具有相同权限的新用户然后 ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... 保留旧用户。"
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... 从用户表中删除旧用户。"
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... 撤销旧用户的所有权限,然后删除旧用户。"
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... 从用户表中删除旧用户,然后重新载入权限。"
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr "用户数据库"
-#: server_privileges.php:2144
+#: server_privileges.php:2117
msgctxt "Create none database for user"
msgid "None"
msgstr "无"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr "创建与用户同名的数据库并授予所有权限"
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限"
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "授予数据库“%s”的所有权限。"
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "用户可以访问“%s”"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "全局"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "按数据库指定"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "通配符"
@@ -8613,7 +8678,7 @@ msgstr "会话值"
msgid "Global value"
msgstr "全局值"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr "下载"
@@ -8648,55 +8713,67 @@ msgstr "如果你的服务器已经配置好支持 HTTPS,请[a@%s]点击这里
msgid "Insecure connection"
msgstr "非安全连接"
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Configuration storage"
+msgid "Configuration saved."
+msgstr "高级功能"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr "概要"
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr "显示隐藏信息 (#MSG_COUNT)"
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr "没有配置好的服务器"
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr "新建服务器"
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr "默认语言"
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr "让用户选择"
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr "- 无 -"
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr "默认服务器"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr "换行符"
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr "显示"
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
msgid "Load"
msgstr "加载"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin 主页 (外链,英文)"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr "捐助 (外链,英文)"
@@ -8939,60 +9016,60 @@ msgstr "已成功修改表 %1$s "
msgid "Function"
msgstr "函数"
-#: tbl_change.php:755
+#: tbl_change.php:758
msgid " Because of its length,
this column might not be editable "
msgstr " 因长度问题,
该字段可能无法编辑 "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr "删除 BLOB 容器功能"
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "二进制 - 无法编辑"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr "上传到 BLOB 容器"
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "以新行插入"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr "以新行插入 (忽略错误)"
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr "显示插入语句"
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "然后"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "返回上一页"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "插入新数据"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "返回到本页"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "编辑下一行"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr "继续插入 %s 行"
@@ -9144,7 +9221,7 @@ msgstr "(“PRIMARY”必须而且只能作为主键的名称!)"
msgid "Add to index %s column(s)"
msgstr "添加 %s 个索引字段"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "至少要有一个字段。"
@@ -9170,97 +9247,97 @@ msgstr "已将数据表 %s 复制为 %s。"
msgid "The table name is empty!"
msgstr "表名不能为空!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "更改表的排序,根据"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(逐一)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "将数据表移动到(数据库名.数据表名):"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "表选项"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "将表改名为"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "将数据表复制到(数据库名.数据表名):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "切换到复制的数据表"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "表维护"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "整理表碎片"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "已强制更新表 %s "
-#: tbl_operations.php:664
+#: tbl_operations.php:669
msgid "Flush the table (FLUSH)"
msgstr "刷新表 (FLUSH)"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
msgid "Delete data or table"
msgstr "删除数据或数据表"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr "清空数据表 (TRUNCATE)"
-#: tbl_operations.php:708
+#: tbl_operations.php:713
msgid "Delete the table (DROP)"
msgstr "删除数据表 (DROP)"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
msgid "Partition maintenance"
msgstr "分区维护"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr "分区 %s"
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr "分析"
-#: tbl_operations.php:741
+#: tbl_operations.php:746
msgid "Check"
msgstr "检查"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr "优化"
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr "重建"
-#: tbl_operations.php:744
+#: tbl_operations.php:749
msgid "Repair"
msgstr "修复"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr "删除分区"
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "检查引用完整性:"
@@ -9268,39 +9345,39 @@ msgstr "检查引用完整性:"
msgid "Show tables"
msgstr "显示表"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "已用空间"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "已用"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "有效"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "行统计"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "说明"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr "静态"
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "动态"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "行长度"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr " 行大小 "
@@ -9377,52 +9454,52 @@ msgstr "无"
msgid "Column %s has been dropped"
msgstr "已删除字段 %s "
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "已将 %s 设为主键"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "已将 %s 设为索引"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
msgid "Show more actions"
msgstr "显示更多操作"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "关系查看"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "规划表结构"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
msgid "Add column"
msgstr "添加字段"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "于表结尾"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "于表开头"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "于 %s 之后"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, php-format
msgid "Create an index on %s columns"
msgstr "在第 %s 个字段创建索引"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr "已分区"
@@ -9450,107 +9527,137 @@ msgstr "%s.%s 的追踪,版本 %s 已启用。"
msgid "SQL statements executed."
msgstr "SQL 语句已执行。"
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr "你可以通过创建一个临时数据库来执行这个转储。请确保你有足够的权限。"
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "如果你不需要,请注释以下两行。"
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL 语句已导出。请复制保存或运行它。"
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr "版本 %s 的快照 (SQL 代码)"
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "追踪下列数据定义语句:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Gather errors"
+msgid "Query error"
+msgstr "收集错误"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "追踪下列数据操作语句:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "追踪语句"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s"
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "删除追踪数据"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "无数据库"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
msgid "Date"
msgstr "日期"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "数据定义语句"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "数据操作语句"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr "SQL 转储 (文件下载)"
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr "SQL 转储"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "该选项将导致当前表的结构和数据被替换。"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "执行 SQL 语句"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "导出为 %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr "查看版本"
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "版本"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "禁用 %s.%s 的追踪"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "立即禁用"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "启用 %s.%s 的追踪"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "立即启用"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "为 %2$s.%3$s 创建版本 %1$s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "追踪下列数据定义语句:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "追踪下列数据操作语句:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "创建版本"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index d238d2f849..ec9403f2e2 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,21 +1,21 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: phpMyAdmin 3.4.0-rc2-dev\n"
+"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-04-21 14:27+0200\n"
+"POT-Creation-Date: 2011-05-13 06:39-0400\n"
"PO-Revision-Date: 2010-11-05 14:13+0200\n"
"Last-Translator: \n"
"Language-Team: chinese_traditional \n"
-"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
-#: libraries/display_tbl.lib.php:341 server_privileges.php:1609
+#: libraries/display_tbl.lib.php:341 server_privileges.php:1582
msgid "Show all"
msgstr "顯示全部"
@@ -44,9 +44,9 @@ msgstr ""
msgid "Search"
msgstr "搜索"
-#: browse_foreigners.php:154 db_operations.php:371 db_operations.php:416
-#: db_operations.php:522 db_operations.php:550 db_search.php:358
-#: db_structure.php:529 enum_editor.php:63 js/messages.php:59
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:358
+#: db_structure.php:535 enum_editor.php:63 js/messages.php:61
#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:277 libraries/common.lib.php:1335
#: libraries/common.lib.php:2308 libraries/core.lib.php:557
@@ -62,22 +62,22 @@ msgstr "搜索"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:385
#: libraries/sql_query_form.lib.php:455 libraries/sql_query_form.lib.php:520
#: libraries/tbl_properties.inc.php:782 libraries/tbl_properties.inc.php:797
-#: main.php:112 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:675
-#: server_privileges.php:1720 server_privileges.php:2077
-#: server_privileges.php:2124 server_privileges.php:2164
+#: main.php:109 navigation.php:214 pmd_pdf.php:124 prefs_manage.php:265
+#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:645
+#: server_privileges.php:1693 server_privileges.php:2050
+#: server_privileges.php:2097 server_privileges.php:2137
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
-#: tbl_change.php:1099 tbl_change.php:1136 tbl_indexes.php:252
-#: tbl_operations.php:276 tbl_operations.php:313 tbl_operations.php:515
-#: tbl_operations.php:577 tbl_operations.php:759 tbl_select.php:290
-#: tbl_structure.php:654 tbl_structure.php:690 tbl_tracking.php:389
-#: tbl_tracking.php:506 view_create.php:181 view_operations.php:99
+#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
+#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
+#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
+#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
+#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "執行"
#: browse_foreigners.php:169 browse_foreigners.php:173
-#: libraries/Index.class.php:441 tbl_tracking.php:314
+#: libraries/Index.class.php:441 tbl_tracking.php:313
msgid "Keyname"
msgstr "鍵名"
@@ -117,17 +117,17 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "資料庫 %1$s 已建立"
-#: db_datadict.php:48 db_operations.php:364
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "資料庫註解文字: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
-#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
+#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: tbl_printview.php:127
msgid "Table comments"
msgstr "資料表註解文字"
-#: db_datadict.php:167 db_qbe.php:193 libraries/Index.class.php:445
+#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
#: libraries/export/odt.php:301 libraries/export/texytext.php:226
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
@@ -135,7 +135,7 @@ msgstr "資料表註解文字"
#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273
#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
-#: tbl_tracking.php:267 tbl_tracking.php:318
+#: tbl_tracking.php:266 tbl_tracking.php:317
msgid "Column"
msgstr "欄位"
@@ -146,11 +146,11 @@ msgstr "欄位"
#: libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1240
#: libraries/schema/Pdf_Relation_Schema.class.php:1261
-#: libraries/tbl_properties.inc.php:99 server_privileges.php:2177
+#: libraries/tbl_properties.inc.php:99 server_privileges.php:2150
#: tbl_change.php:288 tbl_change.php:315 tbl_chart.php:132
#: tbl_printview.php:140 tbl_printview.php:310 tbl_select.php:113
-#: tbl_structure.php:199 tbl_structure.php:752 tbl_tracking.php:268
-#: tbl_tracking.php:315
+#: tbl_structure.php:199 tbl_structure.php:754 tbl_tracking.php:267
+#: tbl_tracking.php:314
msgid "Type"
msgstr "型態"
@@ -160,8 +160,8 @@ msgstr "型態"
#: libraries/schema/Pdf_Relation_Schema.class.php:1242
#: libraries/schema/Pdf_Relation_Schema.class.php:1263
#: libraries/tbl_properties.inc.php:108 tbl_change.php:324
-#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
-#: tbl_tracking.php:321
+#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269
+#: tbl_tracking.php:320
msgid "Null"
msgstr "Null"
@@ -171,7 +171,7 @@ msgstr "Null"
#: libraries/schema/Pdf_Relation_Schema.class.php:1243
#: libraries/schema/Pdf_Relation_Schema.class.php:1264
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
-#: tbl_structure.php:203 tbl_tracking.php:271
+#: tbl_structure.php:203 tbl_tracking.php:270
msgid "Default"
msgstr "預設值"
@@ -194,39 +194,40 @@ msgstr "連結到"
msgid "Comments"
msgstr "註解"
-#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
+#: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:247
+#: libraries/mult_submits.inc.php:282
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
-#: server_privileges.php:1409 server_privileges.php:1420
-#: server_privileges.php:1664 server_privileges.php:1675
-#: server_privileges.php:1995 server_privileges.php:2000
-#: server_privileges.php:2294 sql.php:238 sql.php:299 tbl_printview.php:226
-#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
+#: server_privileges.php:1380 server_privileges.php:1391
+#: server_privileges.php:1637 server_privileges.php:1648
+#: server_privileges.php:1968 server_privileges.php:1973
+#: server_privileges.php:2267 sql.php:238 sql.php:299 tbl_printview.php:226
+#: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335
msgid "No"
msgstr " 否 "
-#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
+#: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204
#: libraries/export/htmlword.php:325 libraries/export/latex.php:444
#: libraries/export/odt.php:375 libraries/export/texytext.php:304
-#: libraries/mult_submits.inc.php:43 libraries/mult_submits.inc.php:75
-#: libraries/mult_submits.inc.php:84 libraries/mult_submits.inc.php:89
-#: libraries/mult_submits.inc.php:94 libraries/mult_submits.inc.php:246
-#: libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
+#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
+#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:257
+#: libraries/mult_submits.inc.php:271 libraries/mult_submits.inc.php:281
+#: libraries/mult_submits.inc.php:294
#: libraries/schema/Pdf_Relation_Schema.class.php:1321
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
-#: server_databases.php:76 server_privileges.php:1406
-#: server_privileges.php:1417 server_privileges.php:1661
-#: server_privileges.php:1675 server_privileges.php:1995
-#: server_privileges.php:1998 server_privileges.php:2294 sql.php:298
+#: server_databases.php:76 server_privileges.php:1377
+#: server_privileges.php:1388 server_privileges.php:1634
+#: server_privileges.php:1648 server_privileges.php:1968
+#: server_privileges.php:1971 server_privileges.php:2267 sql.php:298
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
-#: tbl_tracking.php:329 tbl_tracking.php:334
+#: tbl_tracking.php:328 tbl_tracking.php:333
msgid "Yes"
msgstr " 是 "
@@ -238,8 +239,8 @@ msgstr "列印"
msgid "View dump (schema) of database"
msgstr "檢視資料庫的備份概要 (dump schema)"
-#: db_export.php:34 db_printview.php:94 db_qbe.php:98 db_tracking.php:48
-#: export.php:371 navigation.php:304
+#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
+#: export.php:371 navigation.php:303
msgid "No tables found in database."
msgstr "資料庫中沒有資料表"
@@ -265,78 +266,78 @@ msgstr "資料庫 %s 已更改名稱為 %s"
msgid "Database %s has been copied to %s"
msgstr "資料庫 %s 已複製到 %s"
-#: db_operations.php:399
+#: db_operations.php:404
msgid "Rename database to"
msgstr "更改資料庫名稱到"
-#: db_operations.php:404 server_processlist.php:69
+#: db_operations.php:409 server_processlist.php:69
msgid "Command"
msgstr "指令"
-#: db_operations.php:433
+#: db_operations.php:440
msgid "Remove database"
msgstr "移除資料庫"
-#: db_operations.php:445
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "資料庫 %s 已被刪除"
-#: db_operations.php:450
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "清除資料庫 (DROP)"
-#: db_operations.php:478
+#: db_operations.php:487
msgid "Copy database to"
msgstr "複製資料庫到"
-#: db_operations.php:485 tbl_operations.php:544 tbl_tracking.php:382
+#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
msgid "Structure only"
msgstr "只有結構"
-#: db_operations.php:486 tbl_operations.php:545 tbl_tracking.php:384
+#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
msgid "Structure and data"
msgstr "結構與資料"
-#: db_operations.php:487 tbl_operations.php:546 tbl_tracking.php:383
+#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
msgid "Data only"
msgstr "只有資料"
-#: db_operations.php:495
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "複製前建立資料庫 (CREATE DATABASE)"
-#: db_operations.php:498 libraries/config/messages.inc.php:124
+#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
-#: libraries/config/messages.inc.php:132 tbl_operations.php:552
+#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#, php-format
msgid "Add %s"
msgstr "新增 %s"
-#: db_operations.php:502 libraries/config/messages.inc.php:117
-#: tbl_operations.php:310 tbl_operations.php:554
+#: db_operations.php:511 libraries/config/messages.inc.php:117
+#: tbl_operations.php:315 tbl_operations.php:559
msgid "Add AUTO_INCREMENT value"
msgstr "新增 AUTO_INCREMENT 數值"
-#: db_operations.php:506 tbl_operations.php:561
+#: db_operations.php:515 tbl_operations.php:566
msgid "Add constraints"
msgstr "加入限制"
-#: db_operations.php:519
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "轉移到複製之資料庫"
-#: db_operations.php:543 libraries/Index.class.php:447
+#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
-#: server_collations.php:65 tbl_operations.php:374 tbl_select.php:114
-#: tbl_structure.php:200 tbl_structure.php:860 tbl_tracking.php:269
-#: tbl_tracking.php:320
+#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
+#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
+#: tbl_tracking.php:319
msgid "Collation"
msgstr "校對"
-#: db_operations.php:556
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -346,7 +347,7 @@ msgid ""
"click %shere%s."
msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因."
-#: db_operations.php:589
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "編輯或匯出關連表"
@@ -354,17 +355,17 @@ msgstr "編輯或匯出關連表"
#: libraries/config/messages.inc.php:487 libraries/db_structure.lib.php:37
#: libraries/export/pdf.php:100 libraries/export/xml.php:331
#: libraries/header.inc.php:138 libraries/schema/User_Schema.class.php:237
-#: server_privileges.php:1771 server_privileges.php:1827
-#: server_privileges.php:2091 server_synchronize.php:422
-#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
+#: server_privileges.php:1744 server_privileges.php:1800
+#: server_privileges.php:2064 server_synchronize.php:422
+#: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74
msgid "Table"
msgstr "資料表"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
-#: libraries/import.lib.php:147 navigation.php:621 navigation.php:643
-#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:476
-#: tbl_structure.php:870
+#: libraries/import.lib.php:147 navigation.php:620 navigation.php:642
+#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
+#: tbl_structure.php:872
msgid "Rows"
msgstr "資料列列數"
@@ -380,21 +381,21 @@ msgstr "使用中"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
-#: tbl_structure.php:902
+#: tbl_structure.php:904
msgid "Creation"
msgstr "建立"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
-#: tbl_structure.php:910
+#: tbl_structure.php:912
msgid "Last update"
msgstr "最後更新"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
-#: tbl_structure.php:918
+#: tbl_structure.php:920
msgid "Last check"
msgstr "最後檢查"
@@ -406,97 +407,90 @@ msgid_plural "%s tables"
msgstr[0] "%s 資料表"
msgstr[1] "%s 資料表"
-#: db_qbe.php:25 import.php:453 libraries/Message.class.php:190
-#: libraries/display_tbl.lib.php:2036 libraries/sql_query_form.lib.php:140
-#: tbl_operations.php:224 tbl_relation.php:289 tbl_row_action.php:126
-#: view_operations.php:60
-msgid "Your SQL query has been executed successfully"
-msgstr "您的SQL語法已順利執行"
-
-#: db_qbe.php:38
+#: db_qbe.php:41
msgid "You have to choose at least one column to display"
msgstr "您需要選擇最少顯示一行欄位"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "Switch to"
msgstr "切換至"
-#: db_qbe.php:183
+#: db_qbe.php:186
msgid "visual builder"
msgstr ""
-#: db_qbe.php:219 libraries/db_structure.lib.php:95
+#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:852
msgid "Sort"
msgstr "排序"
-#: db_qbe.php:228 db_qbe.php:262 libraries/db_structure.lib.php:102
+#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:271
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: tbl_select.php:277
msgid "Ascending"
msgstr "遞增"
-#: db_qbe.php:229 db_qbe.php:270 libraries/db_structure.lib.php:110
+#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
-#: server_databases.php:148 server_databases.php:165 tbl_operations.php:272
+#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: tbl_select.php:278
msgid "Descending"
msgstr "遞減"
-#: db_qbe.php:283 db_tracking.php:91 libraries/display_tbl.lib.php:390
-#: tbl_change.php:278 tbl_tracking.php:591
+#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
+#: tbl_change.php:278 tbl_tracking.php:648
msgid "Show"
msgstr "顯示"
-#: db_qbe.php:319
+#: db_qbe.php:322
msgid "Criteria"
msgstr "篩選"
-#: db_qbe.php:372 db_qbe.php:454 db_qbe.php:546 db_qbe.php:577
+#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "新增"
-#: db_qbe.php:376 db_qbe.php:458 db_qbe.php:543 db_qbe.php:574
+#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
msgstr "與"
-#: db_qbe.php:385 db_qbe.php:466 db_qbe.php:548 db_qbe.php:579
+#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
msgstr "移除"
-#: db_qbe.php:389 db_qbe.php:470 db_qbe.php:541 db_qbe.php:572
+#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:306
-#: tbl_change.php:962 tbl_indexes.php:248 tbl_select.php:251
+#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
msgstr "或"
-#: db_qbe.php:526
+#: db_qbe.php:529
msgid "Modify"
msgstr "修改"
-#: db_qbe.php:603
+#: db_qbe.php:606
msgid "Add/Delete criteria rows"
msgstr "新增/刪除篩選列"
-#: db_qbe.php:615
+#: db_qbe.php:618
msgid "Add/Delete columns"
msgstr "新增/刪除欄位"
-#: db_qbe.php:628 db_qbe.php:653
+#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
msgstr "更新語法"
-#: db_qbe.php:636
+#: db_qbe.php:639
msgid "Use Tables"
msgstr "使用資料表"
-#: db_qbe.php:659
+#: db_qbe.php:662
#, php-format
msgid "SQL query on database %s:"
msgstr "在資料庫 %s 執行 SQL 語法:"
-#: db_qbe.php:953 libraries/common.lib.php:1188
+#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
msgstr "執行語法"
@@ -538,7 +532,7 @@ msgstr[1] "%s 項資料符合 - 於資料表 %s"
#: db_search.php:254 libraries/common.lib.php:2830
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
-#: libraries/tbl_links.inc.php:48 tbl_structure.php:558
+#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
msgstr "瀏覽"
@@ -548,14 +542,15 @@ msgstr "瀏覽"
msgid "Delete the matches for the %s table?"
msgstr "刪除此資料表的追蹤資料"
-#: db_search.php:259 libraries/display_tbl.lib.php:1185
-#: libraries/display_tbl.lib.php:2115
+#: db_search.php:259 libraries/display_tbl.lib.php:1223
+#: libraries/display_tbl.lib.php:2153
#: libraries/schema/User_Schema.class.php:169
#: libraries/schema/User_Schema.class.php:238
#: libraries/schema/User_Schema.class.php:273
#: libraries/schema/User_Schema.class.php:303
#: libraries/sql_query_form.lib.php:448 pmd_general.php:423
-#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
+#: setup/frames/index.inc.php:138 setup/frames/index.inc.php:229
+#: tbl_tracking.php:435 tbl_tracking.php:456 tbl_tracking.php:513
msgid "Delete"
msgstr "刪除"
@@ -599,17 +594,17 @@ msgstr "於以下資料表:"
msgid "No tables found in database"
msgstr "資料庫中沒有資料表"
-#: db_structure.php:277 tbl_operations.php:684
+#: db_structure.php:277 tbl_operations.php:689
#, php-format
msgid "Table %s has been emptied"
msgstr "資料表 %s 已被清空"
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "View %s has been dropped"
msgstr "檢視 %s 己被刪除."
-#: db_structure.php:286 tbl_operations.php:701
+#: db_structure.php:286 tbl_operations.php:706
#, php-format
msgid "Table %s has been dropped"
msgstr "資料表 %s 已被刪除"
@@ -622,11 +617,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:379 libraries/display_tbl.lib.php:1999
+#: db_structure.php:379 libraries/display_tbl.lib.php:2037
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "這個檢視至少有這些數目的列,請參考%sdocumentation%s。"
#: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:138
@@ -650,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "這 MySQL 伺服器的預設儲存引擎是 %s "
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
-#: libraries/display_tbl.lib.php:2140 libraries/display_tbl.lib.php:2145
+#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
-#: server_databases.php:251 server_privileges.php:1692 tbl_structure.php:546
-#: tbl_structure.php:555
+#: server_databases.php:251 server_privileges.php:1665 tbl_structure.php:548
+#: tbl_structure.php:557
msgid "With selected:"
msgstr "選擇的資料表:"
-#: db_structure.php:486 libraries/display_tbl.lib.php:2135
-#: server_databases.php:248 server_privileges.php:580
-#: server_privileges.php:1695 tbl_structure.php:549
+#: db_structure.php:486 libraries/display_tbl.lib.php:2173
+#: server_databases.php:248 server_privileges.php:582
+#: server_privileges.php:1668 tbl_structure.php:551
msgid "Check All"
msgstr "全選"
-#: db_structure.php:490 libraries/display_tbl.lib.php:2136
+#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
-#: server_privileges.php:583 server_privileges.php:1699 tbl_structure.php:553
+#: server_privileges.php:585 server_privileges.php:1672 tbl_structure.php:555
msgid "Uncheck All"
msgstr "全部取消"
@@ -674,16 +669,16 @@ msgid "Check tables having overhead"
msgstr "檢查額外記錄 (overhead)"
#: db_structure.php:503 libraries/config/messages.inc.php:161
-#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2153
-#: libraries/display_tbl.lib.php:2287 libraries/server_links.inc.php:69
+#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2191
+#: libraries/display_tbl.lib.php:2325 libraries/server_links.inc.php:69
#: libraries/tbl_links.inc.php:73 prefs_manage.php:288
-#: server_privileges.php:1382 setup/frames/menu.inc.php:21
+#: server_privileges.php:1353 setup/frames/menu.inc.php:21
msgid "Export"
msgstr "輸出"
-#: db_structure.php:505 db_structure.php:561
-#: libraries/display_tbl.lib.php:2242 tbl_structure.php:584
-#: tbl_structure.php:586
+#: db_structure.php:505 db_structure.php:567
+#: libraries/display_tbl.lib.php:2280 tbl_structure.php:586
+#: tbl_structure.php:588
msgid "Print view"
msgstr "列印檢視"
@@ -695,28 +690,44 @@ msgstr "清空"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
-#: tbl_structure.php:562
+#: tbl_structure.php:564
msgid "Drop"
msgstr "刪除"
-#: db_structure.php:513 tbl_operations.php:600
+#: db_structure.php:513 tbl_operations.php:605
msgid "Check table"
msgstr "檢查資料表"
-#: db_structure.php:515 tbl_operations.php:649 tbl_structure.php:802
-#: tbl_structure.php:804
+#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
+#: tbl_structure.php:806
msgid "Optimize table"
msgstr "最佳化資料表"
-#: db_structure.php:517 tbl_operations.php:636
+#: db_structure.php:517 tbl_operations.php:641
msgid "Repair table"
msgstr "修復資料表"
-#: db_structure.php:519 tbl_operations.php:623
+#: db_structure.php:519 tbl_operations.php:628
msgid "Analyze table"
msgstr "分析資料表"
-#: db_structure.php:568 libraries/schema/User_Schema.class.php:387
+#: db_structure.php:521
+msgid "Add prefix to table"
+msgstr ""
+
+#: db_structure.php:523 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Replace table prefix"
+msgstr "以檔案取代資料表資料"
+
+#: db_structure.php:525 libraries/mult_submits.inc.php:246
+#, fuzzy
+#| msgid "Replace table data with file"
+msgid "Copy table with prefix"
+msgstr "以檔案取代資料表資料"
+
+#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
msgid "Data Dictionary"
msgstr "數據字典"
@@ -730,10 +741,10 @@ msgstr "已追蹤的資料表"
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
-#: server_privileges.php:1766 server_privileges.php:1827
-#: server_privileges.php:2085 server_processlist.php:68
+#: server_privileges.php:1739 server_privileges.php:1800
+#: server_privileges.php:2058 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
-#: tbl_tracking.php:585 test/theme.php:64
+#: tbl_tracking.php:642 test/theme.php:64
msgid "Database"
msgstr "資料庫"
@@ -741,36 +752,36 @@ msgstr "資料庫"
msgid "Last version"
msgstr "上一個版本"
-#: db_tracking.php:87 tbl_tracking.php:588
+#: db_tracking.php:87 tbl_tracking.php:645
msgid "Created"
msgstr "已建立"
-#: db_tracking.php:88 tbl_tracking.php:589
+#: db_tracking.php:88 tbl_tracking.php:646
msgid "Updated"
msgstr "已更新"
#: db_tracking.php:89 libraries/common.lib.php:1354
#: libraries/server_links.inc.php:50 server_processlist.php:71
-#: tbl_tracking.php:590 test/theme.php:100
+#: tbl_tracking.php:647 test/theme.php:100
msgid "Status"
msgstr "狀態"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
-#: server_privileges.php:1638 server_privileges.php:1831
-#: server_privileges.php:2180 tbl_structure.php:208
+#: server_privileges.php:1611 server_privileges.php:1804
+#: server_privileges.php:2153 tbl_structure.php:208
msgid "Action"
msgstr "執行"
-#: db_tracking.php:101 js/messages.php:34
+#: db_tracking.php:101 js/messages.php:36
msgid "Delete tracking data for this table"
msgstr "刪除此資料表的追蹤資料"
-#: db_tracking.php:119 tbl_tracking.php:542 tbl_tracking.php:600
+#: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657
msgid "active"
msgstr "啟用"
-#: db_tracking.php:121 tbl_tracking.php:544 tbl_tracking.php:602
+#: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659
msgid "not active"
msgstr "未啟用"
@@ -778,11 +789,11 @@ msgstr "未啟用"
msgid "Versions"
msgstr "版本"
-#: db_tracking.php:135 tbl_tracking.php:373 tbl_tracking.php:619
+#: db_tracking.php:135 tbl_tracking.php:409 tbl_tracking.php:676
msgid "Tracking report"
msgstr "追蹤報表"
-#: db_tracking.php:136 tbl_tracking.php:245 tbl_tracking.php:619
+#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "結構快照"
@@ -790,8 +801,8 @@ msgstr "結構快照"
msgid "Untracked tables"
msgstr "未追蹤的資料表"
-#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:620
-#: tbl_structure.php:622
+#: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622
+#: tbl_structure.php:624
#, fuzzy
msgid "Track table"
msgstr "檢查資料表"
@@ -850,8 +861,8 @@ msgstr "備份已儲到檔案 %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制."
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -909,6 +920,13 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
+#: import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
+#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
+#: view_operations.php:60
+msgid "Your SQL query has been executed successfully"
+msgstr "您的SQL語法已順利執行"
+
#: import_status.php:30 libraries/common.lib.php:682
#: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123
msgid "Back"
@@ -933,262 +951,280 @@ msgstr ""
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" 指令已經停用."
-#: js/messages.php:30 libraries/mult_submits.inc.php:242 sql.php:293
+#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
msgid "Do you really want to "
msgstr "您確定要 "
-#: js/messages.php:31 libraries/mult_submits.inc.php:242 sql.php:278
+#: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278
msgid "You are about to DESTROY a complete database!"
msgstr "您將會刪除整個資料庫!"
#: js/messages.php:32
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to DESTROY a complete table!"
+msgstr "您將會刪除整個資料庫!"
+
+#: js/messages.php:33
+#, fuzzy
+#| msgid "You are about to DESTROY a complete database!"
+msgid "You are about to TRUNCATE a complete table!"
+msgstr "您將會刪除整個資料庫!"
+
+#: js/messages.php:34
msgid "Dropping Event"
msgstr ""
-#: js/messages.php:33
+#: js/messages.php:35
#, fuzzy
msgid "Dropping Procedure"
msgstr "處理"
-#: js/messages.php:35
+#: js/messages.php:37
#, fuzzy
#| msgid "Allows inserting and replacing data."
msgid "Deleting tracking data"
msgstr "容許新增及取代數據."
-#: js/messages.php:36
+#: js/messages.php:38
msgid "Dropping Primary Key/Index"
msgstr ""
-#: js/messages.php:37
+#: js/messages.php:39
msgid "This operation could take a long time. Proceed anyway?"
msgstr "這個作業所用時間會較長, 繼續?"
-#: js/messages.php:40
+#: js/messages.php:42
msgid "You are about to DISABLE a BLOB Repository!"
msgstr ""
-#: js/messages.php:41
+#: js/messages.php:43
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
-#: js/messages.php:44
+#: js/messages.php:46
msgid "Missing value in the form!"
msgstr "表格內漏填一些資料!"
-#: js/messages.php:45
+#: js/messages.php:47
msgid "This is not a number!"
msgstr "這不是一個數字!"
-#: js/messages.php:48
+#: js/messages.php:50
msgid "The host name is empty!"
msgstr "請輸入主機名稱!"
-#: js/messages.php:49
+#: js/messages.php:51
msgid "The user name is empty!"
msgstr "請輸入使用者名稱!"
-#: js/messages.php:50 server_privileges.php:1249 user_password.php:64
+#: js/messages.php:52 server_privileges.php:1220 user_password.php:64
msgid "The password is empty!"
msgstr "請輸入密碼!"
-#: js/messages.php:51 server_privileges.php:1247 user_password.php:67
+#: js/messages.php:53 server_privileges.php:1218 user_password.php:67
msgid "The passwords aren't the same!"
msgstr "第二次輸入的密碼不同!"
-#: js/messages.php:52
+#: js/messages.php:54
#, fuzzy
#| msgid "Add a new User"
msgid "Add a New User"
msgstr "新增使用者"
-#: js/messages.php:53
+#: js/messages.php:55
#, fuzzy
msgid "Create User"
msgstr "伺服器版本"
-#: js/messages.php:54
+#: js/messages.php:56
#, fuzzy
msgid "Reloading Privileges"
msgstr "整體權限"
-#: js/messages.php:55
+#: js/messages.php:57
#, fuzzy
#| msgid "Remove selected users"
msgid "Removing Selected Users"
msgstr "移除已選擇使用者"
-#: js/messages.php:56 libraries/tbl_properties.inc.php:792
-#: tbl_tracking.php:245 tbl_tracking.php:373
+#: js/messages.php:58 libraries/tbl_properties.inc.php:792
+#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
msgstr ""
-#: js/messages.php:60 libraries/tbl_properties.inc.php:797 pmd_general.php:388
+#: js/messages.php:62 libraries/tbl_properties.inc.php:797 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
msgstr ""
-#: js/messages.php:63
+#: js/messages.php:65
#, fuzzy
msgid "Loading"
msgstr "本地"
-#: js/messages.php:64
+#: js/messages.php:66
#, fuzzy
#| msgid "Processes"
msgid "Processing Request"
msgstr "處理"
-#: js/messages.php:65 libraries/import/ods.php:80
+#: js/messages.php:67 libraries/import/ods.php:80
msgid "Error in Processing Request"
msgstr ""
-#: js/messages.php:66
+#: js/messages.php:68
msgid "Dropping Column"
msgstr ""
-#: js/messages.php:67
+#: js/messages.php:69
msgid "Adding Primary Key"
msgstr ""
-#: js/messages.php:68 libraries/relation.lib.php:87 pmd_general.php:386
+#: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
msgstr "確定"
-#: js/messages.php:71
+#: js/messages.php:73
#, fuzzy
#| msgid "Rename database to"
msgid "Renaming Databases"
msgstr "更改資料庫名稱到"
-#: js/messages.php:72
+#: js/messages.php:74
#, fuzzy
#| msgid "Rename database to"
msgid "Reload Database"
msgstr "更改資料庫名稱到"
-#: js/messages.php:73
+#: js/messages.php:75
#, fuzzy
#| msgid "Copy database to"
msgid "Copying Database"
msgstr "複製資料庫到"
-#: js/messages.php:74
+#: js/messages.php:76
#, fuzzy
#| msgid "Charset"
msgid "Changing Charset"
msgstr "文字編碼 (Charset)"
-#: js/messages.php:75
+#: js/messages.php:77
#, fuzzy
#| msgid "Table must have at least one field."
msgid "Table must have at least one column"
msgstr "資料表最少需要有一個欄位."
-#: js/messages.php:76
+#: js/messages.php:78
#, fuzzy
msgid "Create Table"
msgstr "建立新一頁"
-#: js/messages.php:81
+#: js/messages.php:83
#, fuzzy
#| msgid "Search"
msgid "Searching"
msgstr "搜索"
-#: js/messages.php:86
+#: js/messages.php:88
#, fuzzy
msgid "Hide query box"
msgstr "SQL 語法"
-#: js/messages.php:87
+#: js/messages.php:89
#, fuzzy
msgid "Show query box"
msgstr "SQL 語法"
-#: js/messages.php:88
+#: js/messages.php:90
#, fuzzy
#| msgid "Engines"
msgid "Inline Edit"
msgstr "引擎"
-#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:332
+#: js/messages.php:91 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:215 tbl_change.php:1051 tbl_indexes.php:246
+#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
#: tbl_relation.php:563
msgid "Save"
msgstr "儲存"
-#: js/messages.php:90 libraries/display_tbl.lib.php:593 pmd_general.php:158
+#: js/messages.php:92 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
-#: js/messages.php:93
+#: js/messages.php:95
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL 語法"
-#: js/messages.php:94
+#: js/messages.php:96
#, fuzzy
msgid "Show search criteria"
msgstr "SQL 語法"
-#: js/messages.php:97 tbl_change.php:303 tbl_indexes.php:198
+#: js/messages.php:99 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:100
+#: js/messages.php:102
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:101
+#: js/messages.php:103
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:102
+#: js/messages.php:104
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:103 pmd_general.php:87 tbl_relation.php:545
+#: js/messages.php:105 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "選擇顯示之欄位"
#: js/messages.php:106
-msgid "Add an option for column "
+msgid ""
+"You haven't saved the changes in the layout. They will be lost if you don't "
+"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:109
+msgid "Add an option for column "
+msgstr ""
+
+#: js/messages.php:112
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "產生密碼"
-#: js/messages.php:110 libraries/replication_gui.lib.php:365
+#: js/messages.php:113 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "產生"
-#: js/messages.php:111
+#: js/messages.php:114
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "更改密碼"
-#: js/messages.php:114 tbl_structure.php:472
+#: js/messages.php:117 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Mon"
-#: js/messages.php:117 setup/lib/index.lib.php:158
+#: js/messages.php:120 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1196,125 +1232,130 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:119
+#: js/messages.php:122
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "上一個版本"
+#: js/messages.php:123
+#, fuzzy
+msgid "up to date"
+msgstr "沒有資料庫"
+
#. l10n: Display text for calendar close link
-#: js/messages.php:137
+#: js/messages.php:141
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "不適用"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:139
+#: js/messages.php:143
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "前一頁"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:141 libraries/common.lib.php:2371
+#: js/messages.php:145 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
-#: tbl_structure.php:894
+#: tbl_structure.php:896
msgid "Next"
msgstr "下一個"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:143
+#: js/messages.php:147
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "總共"
-#: js/messages.php:146
+#: js/messages.php:150
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "二進制碼"
-#: js/messages.php:147
+#: js/messages.php:151
msgid "February"
msgstr ""
-#: js/messages.php:148
+#: js/messages.php:152
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:149
+#: js/messages.php:153
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:150
+#: js/messages.php:154
msgid "May"
msgstr "May"
-#: js/messages.php:151
+#: js/messages.php:155
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:152
+#: js/messages.php:156
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:153
+#: js/messages.php:157
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:154
+#: js/messages.php:158
msgid "September"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:159
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oct"
-#: js/messages.php:156
+#: js/messages.php:160
msgid "November"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:161
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:161 libraries/common.lib.php:1569
+#: js/messages.php:165 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:163 libraries/common.lib.php:1571
+#: js/messages.php:167 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:165 libraries/common.lib.php:1573
+#: js/messages.php:169 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:167 libraries/common.lib.php:1575
+#: js/messages.php:171 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:169 libraries/common.lib.php:1577
+#: js/messages.php:173 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1322,176 +1363,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:171 libraries/common.lib.php:1579
+#: js/messages.php:175 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:173 libraries/common.lib.php:1581
+#: js/messages.php:177 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:175 libraries/common.lib.php:1583
+#: js/messages.php:179 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:177 libraries/common.lib.php:1585
+#: js/messages.php:181 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:179 libraries/common.lib.php:1587
+#: js/messages.php:183 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:181 libraries/common.lib.php:1589
+#: js/messages.php:185 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:183 libraries/common.lib.php:1591
+#: js/messages.php:187 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:186
+#: js/messages.php:190
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sun"
-#: js/messages.php:187
+#: js/messages.php:191
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Mon"
-#: js/messages.php:188
+#: js/messages.php:192
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Tue"
-#: js/messages.php:189
+#: js/messages.php:193
msgid "Wednesday"
msgstr ""
-#: js/messages.php:190
+#: js/messages.php:194
msgid "Thursday"
msgstr ""
-#: js/messages.php:191
+#: js/messages.php:195
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fri"
-#: js/messages.php:192
+#: js/messages.php:196
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:196 libraries/common.lib.php:1594
+#: js/messages.php:200 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:198 libraries/common.lib.php:1596
+#: js/messages.php:202 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:200 libraries/common.lib.php:1598
+#: js/messages.php:204 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:202 libraries/common.lib.php:1600
+#: js/messages.php:206 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:204 libraries/common.lib.php:1602
+#: js/messages.php:208 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:206 libraries/common.lib.php:1604
+#: js/messages.php:210 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:208 libraries/common.lib.php:1606
+#: js/messages.php:212 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:212
+#: js/messages.php:216
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sun"
#. l10n: Minimal week day name
-#: js/messages.php:214
+#: js/messages.php:218
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Mon"
#. l10n: Minimal week day name
-#: js/messages.php:216
+#: js/messages.php:220
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Tue"
#. l10n: Minimal week day name
-#: js/messages.php:218
+#: js/messages.php:222
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wed"
#. l10n: Minimal week day name
-#: js/messages.php:220
+#: js/messages.php:224
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Thu"
#. l10n: Minimal week day name
-#: js/messages.php:222
+#: js/messages.php:226
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fri"
#. l10n: Minimal week day name
-#: js/messages.php:224
+#: js/messages.php:228
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sat"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:226
+#: js/messages.php:230
msgid "Wk"
msgstr ""
-#: js/messages.php:228
+#: js/messages.php:232
msgid "Hour"
msgstr ""
-#: js/messages.php:229
+#: js/messages.php:233
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "使用中"
-#: js/messages.php:230
+#: js/messages.php:234
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -1543,34 +1584,34 @@ msgid "No index defined!"
msgstr "沒有已定義的索引!"
#: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40
-#: tbl_tracking.php:310
+#: tbl_tracking.php:309
msgid "Indexes"
msgstr "索引"
#: libraries/Index.class.php:443 libraries/tbl_properties.inc.php:522
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:565
-#: tbl_tracking.php:316
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567
+#: tbl_tracking.php:315
msgid "Unique"
msgstr "唯一鍵 UNIQUE"
-#: libraries/Index.class.php:444 tbl_tracking.php:317
+#: libraries/Index.class.php:444 tbl_tracking.php:316
msgid "Packed"
msgstr ""
-#: libraries/Index.class.php:446 tbl_tracking.php:319
+#: libraries/Index.class.php:446 tbl_tracking.php:318
msgid "Cardinality"
msgstr "組別"
-#: libraries/Index.class.php:449 tbl_tracking.php:273 tbl_tracking.php:322
+#: libraries/Index.class.php:449 tbl_tracking.php:272 tbl_tracking.php:321
#, fuzzy
msgid "Comment"
msgstr "註解"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
-#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1149
+#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:125
+#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "編輯"
@@ -1592,25 +1633,25 @@ msgstr ""
#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:174
#: libraries/server_links.inc.php:42 server_databases.php:100
-#: server_privileges.php:1766 test/theme.php:92
+#: server_privileges.php:1739 test/theme.php:92
msgid "Databases"
msgstr "資料庫"
-#: libraries/Message.class.php:210 libraries/blobstreaming.lib.php:308
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
-#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:958
-#: tbl_operations.php:224 tbl_relation.php:287 view_operations.php:60
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
+#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "錯誤"
-#: libraries/Message.class.php:281
+#: libraries/Message.class.php:260
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:300
+#: libraries/Message.class.php:279
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -1618,7 +1659,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "並無資料列已選擇"
msgstr[1] "並無資料列已選擇"
-#: libraries/Message.class.php:319
+#: libraries/Message.class.php:298
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -1711,8 +1752,8 @@ msgstr "歡迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr "有可能你未建立設定檔. 你可利用此 %1$s安裝程序%2$s 建立設定檔."
#: libraries/auth/config.auth.lib.php:115
@@ -1859,19 +1900,19 @@ msgstr "個資料表"
#: libraries/config/user_preferences.forms.php:269
#: libraries/config/user_preferences.forms.php:274
#: libraries/export/latex.php:215 libraries/export/sql.php:945
-#: server_privileges.php:587 server_replication.php:314 tbl_printview.php:314
-#: tbl_structure.php:758
+#: server_privileges.php:512 server_replication.php:314 tbl_printview.php:314
+#: tbl_structure.php:760
msgid "Data"
msgstr "資料"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
-#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:789
+#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "總共"
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
-#: tbl_printview.php:333 tbl_structure.php:775
+#: tbl_printview.php:333 tbl_structure.php:777
msgid "Overhead"
msgstr "多餘"
@@ -1964,16 +2005,16 @@ msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "伺服器 %1$s 主機名稱錯誤, 請翻查設定值."
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:485
-#: libraries/header.inc.php:115 main.php:178 server_synchronize.php:1174
+#: libraries/header.inc.php:115 main.php:161 server_synchronize.php:1174
#: test/theme.php:56
msgid "Server"
msgstr "伺服器"
-#: libraries/common.inc.php:826
+#: libraries/common.inc.php:821
msgid "Invalid authentication method set in configuration:"
msgstr "於設定內設定錯誤認證方式:"
-#: libraries/common.inc.php:929
+#: libraries/common.inc.php:924
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "您應該更新到 %s %s 或之後."
@@ -2008,7 +2049,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
-#: main.php:226 server_variables.php:63
+#: main.php:209 server_variables.php:63
msgid "Documentation"
msgstr "說明文件"
@@ -2158,7 +2199,7 @@ msgstr ""
#: libraries/db_links.inc.php:48 libraries/export/latex.php:351
#: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54
#: libraries/tbl_properties.inc.php:634 pmd_general.php:151
-#: server_privileges.php:604 server_replication.php:313 tbl_tracking.php:263
+#: server_privileges.php:512 server_replication.php:313 tbl_tracking.php:262
msgid "Structure"
msgstr "結構"
@@ -2193,7 +2234,7 @@ msgid "Select from the web server upload directory %s:"
msgstr "Web 伺服器上載目錄"
#: libraries/common.lib.php:2991 libraries/sql_query_form.lib.php:501
-#: tbl_change.php:959
+#: tbl_change.php:962
msgid "The directory you set for upload work cannot be reached"
msgstr "設定之上載目錄錯誤,未能使用"
@@ -2364,7 +2405,7 @@ msgstr ""
#: libraries/config/FormDisplay.tpl.php:333
#: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320
-#: prefs_manage.php:325 tbl_change.php:1100
+#: prefs_manage.php:325 tbl_change.php:1103
msgid "Reset"
msgstr "重設"
@@ -2481,7 +2522,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:153
+#: setup/frames/index.inc.php:165
msgid "Configuration file"
msgstr ""
@@ -2611,7 +2652,7 @@ msgid "Character set of the file"
msgstr "文字編碼檔案:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: tbl_printview.php:373 tbl_structure.php:830
+#: tbl_printview.php:373 tbl_structure.php:832
msgid "Format"
msgstr "格式"
@@ -2937,7 +2978,7 @@ msgid "Customize appearance of the navigation frame"
msgstr ""
#: libraries/config/messages.inc.php:178 libraries/select_server.lib.php:42
-#: setup/frames/index.inc.php:98
+#: setup/frames/index.inc.php:110
#, fuzzy
msgid "Servers"
msgstr "伺服器"
@@ -3686,7 +3727,7 @@ msgstr ""
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:114
+#: libraries/config/messages.inc.php:364 setup/frames/index.inc.php:126
msgid "Authentication type"
msgstr ""
@@ -4157,9 +4198,9 @@ msgstr ""
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62
#: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341
-#: libraries/replication_gui.lib.php:351 server_privileges.php:807
-#: server_privileges.php:811 server_privileges.php:822
-#: server_privileges.php:1634 server_synchronize.php:1190
+#: libraries/replication_gui.lib.php:351 server_privileges.php:777
+#: server_privileges.php:781 server_privileges.php:792
+#: server_privileges.php:1607 server_synchronize.php:1190
msgid "Password"
msgstr "密碼"
@@ -4179,8 +4220,8 @@ msgid ""
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:471 tbl_tracking.php:405
-#: tbl_tracking.php:456
+#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
+#: tbl_tracking.php:511
#, fuzzy
msgid "Username"
msgstr "登入名稱:"
@@ -4296,7 +4337,7 @@ msgstr ""
msgid "Verbose multiple statements"
msgstr ""
-#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:229
+#: libraries/config/messages.inc.php:498 setup/frames/index.inc.php:241
msgid "Check for latest version"
msgstr ""
@@ -4443,7 +4484,7 @@ msgstr ""
#: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35
#: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26
-#: setup/frames/index.inc.php:113
+#: setup/frames/index.inc.php:125
msgid "Name"
msgstr "名稱"
@@ -4466,8 +4507,8 @@ msgid "Designer"
msgstr ""
#: libraries/db_links.inc.php:93 libraries/server_links.inc.php:64
-#: server_privileges.php:118 server_privileges.php:1828
-#: server_privileges.php:2178 test/theme.php:116
+#: server_privileges.php:118 server_privileges.php:1801
+#: server_privileges.php:2151 test/theme.php:116
msgid "Privileges"
msgstr "權限"
@@ -4479,7 +4520,7 @@ msgstr ""
msgid "Return type"
msgstr ""
-#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1885
+#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1923
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -4498,23 +4539,23 @@ msgstr "伺服器並無回應"
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)"
-#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:701
+#: libraries/dbi/mysql.dbi.lib.php:370 tbl_structure.php:703
msgid "Details..."
msgstr ""
-#: libraries/display_change_password.lib.php:29 main.php:97
+#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
msgstr "更改密碼"
#: libraries/display_change_password.lib.php:34
-#: libraries/replication_gui.lib.php:347 server_privileges.php:818
+#: libraries/replication_gui.lib.php:347 server_privileges.php:788
msgid "No Password"
msgstr "不用密碼"
#: libraries/display_change_password.lib.php:45
#: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358
-#: server_privileges.php:826 server_privileges.php:829
+#: server_privileges.php:796 server_privileges.php:799
msgid "Re-type"
msgstr "確認密碼"
@@ -4538,7 +4579,7 @@ msgid "Create"
msgstr "建立"
#: libraries/display_create_database.lib.php:43 server_privileges.php:120
-#: server_privileges.php:1519 server_replication.php:33
+#: server_privileges.php:1492 server_replication.php:33
msgid "No Privileges"
msgstr "沒有權限"
@@ -4664,8 +4705,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -4685,7 +4726,7 @@ msgstr "壓縮"
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
-#: pmd_general.php:510 server_privileges.php:1981 server_processlist.php:96
+#: pmd_general.php:510 server_privileges.php:1954 server_processlist.php:96
msgid "None"
msgstr "不適用"
@@ -4871,7 +4912,7 @@ msgstr "依鍵名排序"
#: libraries/import/ldi.php:48 libraries/import/ods.php:32
#: libraries/import/sql.php:19 libraries/import/xls.php:27
#: libraries/import/xlsx.php:27 libraries/import/xml.php:25 tbl_select.php:230
-#: tbl_structure.php:846
+#: tbl_structure.php:848
#, fuzzy
msgid "Options"
msgstr "管理"
@@ -4912,65 +4953,65 @@ msgstr ""
msgid "Browser transformation"
msgstr "瀏覽器轉換方式"
-#: libraries/display_tbl.lib.php:1150
+#: libraries/display_tbl.lib.php:1188
msgid "Copy"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:1177
+#: libraries/display_tbl.lib.php:1203 libraries/display_tbl.lib.php:1215
msgid "The row has been deleted"
msgstr "記錄已被刪除"
-#: libraries/display_tbl.lib.php:1204 libraries/display_tbl.lib.php:2115
+#: libraries/display_tbl.lib.php:1242 libraries/display_tbl.lib.php:2153
#: server_processlist.php:92
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1989
+#: libraries/display_tbl.lib.php:2027
msgid "in query"
msgstr "查詢中"
-#: libraries/display_tbl.lib.php:2007
+#: libraries/display_tbl.lib.php:2045
msgid "Showing rows"
msgstr "顯示記錄"
-#: libraries/display_tbl.lib.php:2017
+#: libraries/display_tbl.lib.php:2055
msgid "total"
msgstr "總計"
-#: libraries/display_tbl.lib.php:2025 sql.php:628
+#: libraries/display_tbl.lib.php:2063 sql.php:628
#, php-format
msgid "Query took %01.4f sec"
msgstr "查詢需時 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2148 querywindow.php:114 querywindow.php:118
-#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:561
+#: libraries/display_tbl.lib.php:2186 querywindow.php:114 querywindow.php:118
+#: querywindow.php:121 tbl_structure.php:150 tbl_structure.php:563
msgid "Change"
msgstr "修改"
-#: libraries/display_tbl.lib.php:2221
+#: libraries/display_tbl.lib.php:2259
msgid "Query results operations"
msgstr "查詢結果操作"
-#: libraries/display_tbl.lib.php:2249
+#: libraries/display_tbl.lib.php:2287
msgid "Print view (with full texts)"
msgstr "列印檢視 (顯示完整文字)"
-#: libraries/display_tbl.lib.php:2293 tbl_chart.php:81
+#: libraries/display_tbl.lib.php:2331 tbl_chart.php:81
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "顯示 PDF 概要"
-#: libraries/display_tbl.lib.php:2312
+#: libraries/display_tbl.lib.php:2350
#, fuzzy
msgid "Create view"
msgstr "伺服器版本"
-#: libraries/display_tbl.lib.php:2447
+#: libraries/display_tbl.lib.php:2465
msgid "Link not found"
msgstr "找不到連結"
-#: libraries/engines/bdb.lib.php:20 main.php:225
+#: libraries/engines/bdb.lib.php:20 main.php:208
msgid "Version information"
msgstr "版本資訊"
@@ -5364,8 +5405,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5489,9 +5530,9 @@ msgstr "可使用 MIME 類型"
#: libraries/export/xml.php:105 libraries/header_printview.inc.php:56
#: libraries/replication_gui.lib.php:65 libraries/replication_gui.lib.php:176
#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:274
-#: libraries/replication_gui.lib.php:331 server_privileges.php:742
-#: server_privileges.php:745 server_privileges.php:801
-#: server_privileges.php:1633 server_privileges.php:2176
+#: libraries/replication_gui.lib.php:331 server_privileges.php:712
+#: server_privileges.php:715 server_privileges.php:771
+#: server_privileges.php:1606 server_privileges.php:2149
#: server_processlist.php:67
msgid "Host"
msgstr "主機"
@@ -5502,7 +5543,7 @@ msgid "Generation Time"
msgstr "建立日期"
#: libraries/export/latex.php:145 libraries/export/sql.php:344
-#: libraries/export/xml.php:111 main.php:179
+#: libraries/export/xml.php:111 main.php:162
msgid "Server version"
msgstr "伺服器版本"
@@ -5847,7 +5888,30 @@ msgstr "不適用"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:419 tbl_replace.php:331
+#: libraries/mult_submits.inc.php:249
+#, fuzzy
+#| msgid "Fri"
+msgid "From"
+msgstr "Fri"
+
+#: libraries/mult_submits.inc.php:252
+msgid "To"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
+#: libraries/sql_query_form.lib.php:440
+msgid "Submit"
+msgstr "送出"
+
+#: libraries/mult_submits.inc.php:263
+msgid "Add table prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:266
+msgid "Add prefix"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
msgid "No change"
msgstr "沒有變更"
@@ -6151,8 +6215,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58
#: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254
-#: libraries/replication_gui.lib.php:261 server_privileges.php:722
-#: server_privileges.php:725 server_privileges.php:732
+#: libraries/replication_gui.lib.php:261 server_privileges.php:692
+#: server_privileges.php:695 server_privileges.php:702
#: server_synchronize.php:1186
msgid "User name"
msgstr "使用者名稱"
@@ -6174,7 +6238,7 @@ msgstr "資訊"
#: libraries/replication_gui.lib.php:117 pmd_general.php:476
#: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775
#: server_status.php:775 tbl_change.php:325 tbl_printview.php:367
-#: tbl_select.php:116 tbl_structure.php:822
+#: tbl_select.php:116 tbl_structure.php:824
msgid "Value"
msgstr "值"
@@ -6192,34 +6256,34 @@ msgstr ""
msgid "Add slave replication user"
msgstr ""
-#: libraries/replication_gui.lib.php:256 server_privileges.php:727
+#: libraries/replication_gui.lib.php:256 server_privileges.php:697
msgid "Any user"
msgstr "任何使用者"
#: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325
-#: libraries/replication_gui.lib.php:348 server_privileges.php:728
-#: server_privileges.php:795 server_privileges.php:819
-#: server_privileges.php:2034 server_privileges.php:2064
+#: libraries/replication_gui.lib.php:348 server_privileges.php:698
+#: server_privileges.php:765 server_privileges.php:789
+#: server_privileges.php:2007 server_privileges.php:2037
msgid "Use text field"
msgstr "文字輸入"
-#: libraries/replication_gui.lib.php:304 server_privileges.php:775
+#: libraries/replication_gui.lib.php:304 server_privileges.php:745
msgid "Any host"
msgstr "任何主機"
-#: libraries/replication_gui.lib.php:308 server_privileges.php:779
+#: libraries/replication_gui.lib.php:308 server_privileges.php:749
msgid "Local"
msgstr "本地"
-#: libraries/replication_gui.lib.php:314 server_privileges.php:784
+#: libraries/replication_gui.lib.php:314 server_privileges.php:754
msgid "This Host"
msgstr "指定主機"
-#: libraries/replication_gui.lib.php:320 server_privileges.php:790
+#: libraries/replication_gui.lib.php:320 server_privileges.php:760
msgid "Use Host Table"
msgstr "使用主機資料表"
-#: libraries/replication_gui.lib.php:333 server_privileges.php:803
+#: libraries/replication_gui.lib.php:333 server_privileges.php:773
msgid ""
"When Host table is used, this field is ignored and values stored in Host "
"table are used instead."
@@ -6283,7 +6347,7 @@ msgstr "屬性"
#: libraries/schema/Pdf_Relation_Schema.class.php:1244
#: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144
-#: tbl_structure.php:204 tbl_tracking.php:272
+#: tbl_structure.php:204 tbl_tracking.php:271
msgid "Extra"
msgstr "附加"
@@ -6384,12 +6448,12 @@ msgid "Toggle scratchboard"
msgstr "轉換便條"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:485
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:485 libraries/select_lang.lib.php:491
-#: libraries/select_lang.lib.php:497
+#: libraries/select_lang.lib.php:490 libraries/select_lang.lib.php:496
+#: libraries/select_lang.lib.php:502
#, php-format
msgid "Unknown language: %1$s."
msgstr "不知名語言: %1$s."
@@ -6468,7 +6532,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "在資料庫 %s 執行以下指令"
#: libraries/sql_query_form.lib.php:297 navigation.php:276
-#: setup/frames/index.inc.php:219
+#: setup/frames/index.inc.php:231
#, fuzzy
msgid "Clear"
msgstr "日曆"
@@ -6503,10 +6567,6 @@ msgstr ""
msgid " Show this query here again "
msgstr "重新顯示 SQL 語法 "
-#: libraries/sql_query_form.lib.php:440
-msgid "Submit"
-msgstr "送出"
-
#: libraries/sql_query_form.lib.php:444
msgid "View only"
msgstr "查看"
@@ -6515,7 +6575,7 @@ msgstr "查看"
msgid "Location of the text file"
msgstr "文字檔案的位置"
-#: libraries/sql_query_form.lib.php:504 tbl_change.php:962
+#: libraries/sql_query_form.lib.php:504 tbl_change.php:965
msgid "web server upload directory"
msgstr "Web 伺服器上載目錄"
@@ -6562,19 +6622,19 @@ msgstr "開始 原始資料"
msgid "END RAW"
msgstr "結束 原始資料"
-#: libraries/sqlparser.lib.php:363
+#: libraries/sqlparser.lib.php:364
msgid "Automatically appended backtick to the end of query!"
msgstr ""
-#: libraries/sqlparser.lib.php:366
+#: libraries/sqlparser.lib.php:367
msgid "Unclosed quote"
msgstr "未完結的引號 (Unclosed quote)"
-#: libraries/sqlparser.lib.php:518
+#: libraries/sqlparser.lib.php:519
msgid "Invalid Identifer"
msgstr "無效的識別碼 (Invalid Identifer)"
-#: libraries/sqlparser.lib.php:635
+#: libraries/sqlparser.lib.php:636
msgid "Unknown Punctuation String"
msgstr "不知明的標點符號 (Unknown Punctuation String)"
@@ -6623,7 +6683,7 @@ msgstr "預設值: 請只輸入該預設值, 無需加上任何反斜線或引
#: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528
#: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:566 tbl_structure.php:766
+#: tbl_structure.php:568 tbl_structure.php:768
msgid "Index"
msgstr "索引鍵 INDEX"
@@ -6668,12 +6728,12 @@ msgid "As defined:"
msgstr ""
#: libraries/tbl_properties.inc.php:516 tbl_structure.php:153
-#: tbl_structure.php:157 tbl_structure.php:564
+#: tbl_structure.php:157 tbl_structure.php:566
msgid "Primary"
msgstr "主鍵 PRIMARY"
#: libraries/tbl_properties.inc.php:534 tbl_structure.php:156
-#: tbl_structure.php:160 tbl_structure.php:570
+#: tbl_structure.php:160 tbl_structure.php:572
msgid "Fulltext"
msgstr "全文檢索"
@@ -6685,7 +6745,7 @@ msgid ""
msgstr "這個轉換方式沒有說明.
請向作者查詢 %s 是甚麼用途."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
-#: tbl_operations.php:366
+#: tbl_operations.php:371
msgid "Storage Engine"
msgstr "儲存引擎"
@@ -6693,13 +6753,13 @@ msgstr "儲存引擎"
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:634
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:636
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "新增 %s 個欄位"
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:628
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:630
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
@@ -6892,83 +6952,83 @@ msgstr "於 ZIP 檔案內找不到任何檔案!"
msgid "Error in ZIP archive:"
msgstr "ZIP 檔案錯誤:"
-#: main.php:68
+#: main.php:65
#, fuzzy
#| msgid "General relation features"
msgid "General Settings"
msgstr "一般關聯功能"
-#: main.php:106
+#: main.php:103
msgid "MySQL connection collation"
msgstr "MySQL 連線校對"
-#: main.php:122
+#: main.php:119
msgid "Appearance Settings"
msgstr ""
-#: main.php:163 prefs_manage.php:274
+#: main.php:146 prefs_manage.php:274
#, fuzzy
#| msgid "General relation features"
msgid "More settings"
msgstr "一般關聯功能"
-#: main.php:180
+#: main.php:163
msgid "Protocol version"
msgstr "通訊協定版本"
-#: main.php:182 server_privileges.php:1478 server_privileges.php:1632
-#: server_privileges.php:1756 server_privileges.php:2175
+#: main.php:165 server_privileges.php:1451 server_privileges.php:1605
+#: server_privileges.php:1729 server_privileges.php:2148
#: server_processlist.php:66
msgid "User"
msgstr "使用者"
-#: main.php:186
+#: main.php:169
msgid "MySQL charset"
msgstr "MySQL 文字編碼"
-#: main.php:198
+#: main.php:181
msgid "Web server"
msgstr ""
-#: main.php:204
+#: main.php:187
msgid "MySQL client version"
msgstr "MySQL 客戶端版本"
-#: main.php:206
+#: main.php:189
#, fuzzy
msgid "PHP extension"
msgstr "PHP 版本"
-#: main.php:212
+#: main.php:195
msgid "Show PHP information"
msgstr "顯示 PHP 資訊"
-#: main.php:227
+#: main.php:210
msgid "Wiki"
msgstr ""
-#: main.php:230
+#: main.php:213
msgid "Official Homepage"
msgstr "phpMyAdmin 官方網站"
-#: main.php:231
+#: main.php:214
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "屬性"
-#: main.php:232
+#: main.php:215
#, fuzzy
msgid "Get support"
msgstr "輸出"
-#: main.php:233
+#: main.php:216
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "沒有變更"
-#: main.php:257
+#: main.php:240
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@@ -6978,7 +7038,7 @@ msgstr ""
"設定檔內有關設定 (root登入及沒有密碼) 與預設的 MySQL 權限戶口相同。 MySQL 伺"
"服器在這預設的設定運行的話會很容易被入侵,您應更改有關設定去防止安全漏洞。"
-#: main.php:265
+#: main.php:248
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@@ -6987,7 +7047,7 @@ msgstr ""
"你在 PHP 設定內啟動了 mbstring.func_overload 選項, 這個選項暫時不兼容 "
"phpMyAdmin , 你可能會損失部份資料!"
-#: main.php:273
+#: main.php:256
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@@ -6996,7 +7056,7 @@ msgstr ""
"找不到 PHP 內的 mbstring 編碼模組, 沒有這個模組, phpMyAdmin 無法準確地分割雙"
"字元文字, 而可能產生問題."
-#: main.php:281
+#: main.php:264
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@@ -7004,24 +7064,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:288
+#: main.php:271
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
-#: main.php:296
+#: main.php:279
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "設定檔案現在需要密碼 (passphrase) (blowfish_secret)."
-#: main.php:304
+#: main.php:287
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
-#: main.php:313
+#: main.php:296
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -7031,21 +7091,21 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因."
-#: main.php:328
+#: main.php:311
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
-#: main.php:343
+#: main.php:326
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-#: main.php:355
+#: main.php:338
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@@ -7066,13 +7126,13 @@ msgstr ""
msgid "filter tables by name"
msgstr "根據欄位內容排序記錄"
-#: navigation.php:309 navigation.php:310
+#: navigation.php:308 navigation.php:309
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "建立新一頁"
-#: navigation.php:315 navigation.php:487
+#: navigation.php:314 navigation.php:486
msgid "Please select a database"
msgstr "請選擇資料庫"
@@ -7468,163 +7528,163 @@ msgid "Includes all privileges except GRANT."
msgstr "包括所有權限除了授權 (GRNANT)."
#: server_privileges.php:32 server_privileges.php:201
-#: server_privileges.php:526
+#: server_privileges.php:528
msgid "Allows altering the structure of existing tables."
msgstr "容許修改現有資料表的結構."
#: server_privileges.php:33 server_privileges.php:217
-#: server_privileges.php:532
+#: server_privileges.php:534
msgid "Allows altering and dropping stored routines."
msgstr "容許修改及刪除儲存程序."
#: server_privileges.php:34 server_privileges.php:193
-#: server_privileges.php:525
+#: server_privileges.php:527
msgid "Allows creating new databases and tables."
msgstr "容許建立新資料庫及資料表."
#: server_privileges.php:35 server_privileges.php:216
-#: server_privileges.php:531
+#: server_privileges.php:533
msgid "Allows creating stored routines."
msgstr "容許建立儲存程序"
-#: server_privileges.php:36 server_privileges.php:525
+#: server_privileges.php:36 server_privileges.php:527
msgid "Allows creating new tables."
msgstr "容許建立新資料表."
#: server_privileges.php:37 server_privileges.php:204
-#: server_privileges.php:529
+#: server_privileges.php:531
msgid "Allows creating temporary tables."
msgstr "容許建立暫時性資料表."
#: server_privileges.php:38 server_privileges.php:218
-#: server_privileges.php:565
+#: server_privileges.php:567
msgid "Allows creating, dropping and renaming user accounts."
msgstr "容許建立、刪除及重新命名使用者戶口."
#: server_privileges.php:39 server_privileges.php:208
-#: server_privileges.php:212 server_privileges.php:537
-#: server_privileges.php:541
+#: server_privileges.php:212 server_privileges.php:539
+#: server_privileges.php:543
msgid "Allows creating new views."
msgstr "容許建立新的檢視."
#: server_privileges.php:40 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:519
msgid "Allows deleting data."
msgstr "容許刪除記錄."
#: server_privileges.php:41 server_privileges.php:194
-#: server_privileges.php:528
+#: server_privileges.php:530
msgid "Allows dropping databases and tables."
msgstr "容許刪除資料庫及資料表."
-#: server_privileges.php:42 server_privileges.php:528
+#: server_privileges.php:42 server_privileges.php:530
msgid "Allows dropping tables."
msgstr "容許刪除資料表."
#: server_privileges.php:43 server_privileges.php:209
-#: server_privileges.php:545
+#: server_privileges.php:547
msgid "Allows to set up events for the event scheduler"
msgstr ""
#: server_privileges.php:44 server_privileges.php:219
-#: server_privileges.php:533
+#: server_privileges.php:535
msgid "Allows executing stored routines."
msgstr "容許執行儲存程序."
#: server_privileges.php:45 server_privileges.php:198
-#: server_privileges.php:520
+#: server_privileges.php:522
msgid "Allows importing data from and exporting data into files."
msgstr "容許輸入及輸出數據到檔案."
-#: server_privileges.php:46 server_privileges.php:551
+#: server_privileges.php:46 server_privileges.php:553
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr "容許新增使用者及權限而無需重新讀取權限資料表."
#: server_privileges.php:47 server_privileges.php:200
-#: server_privileges.php:527
+#: server_privileges.php:529
msgid "Allows creating and dropping indexes."
msgstr "容許建立及刪除索引."
#: server_privileges.php:48 server_privileges.php:190
-#: server_privileges.php:453 server_privileges.php:515
+#: server_privileges.php:453 server_privileges.php:517
msgid "Allows inserting and replacing data."
msgstr "容許新增及取代數據."
#: server_privileges.php:49 server_privileges.php:205
-#: server_privileges.php:560
+#: server_privileges.php:562
msgid "Allows locking tables for the current thread."
msgstr "容許鎖上現時連線之資料表."
-#: server_privileges.php:50 server_privileges.php:657
-#: server_privileges.php:659
+#: server_privileges.php:50 server_privileges.php:627
+#: server_privileges.php:629
msgid "Limits the number of new connections the user may open per hour."
msgstr "限制每小時使用者開啟新連線的數目."
-#: server_privileges.php:51 server_privileges.php:645
-#: server_privileges.php:647
+#: server_privileges.php:51 server_privileges.php:615
+#: server_privileges.php:617
msgid "Limits the number of queries the user may send to the server per hour."
msgstr "限制每小時使用者查詢的數目."
-#: server_privileges.php:52 server_privileges.php:651
-#: server_privileges.php:653
+#: server_privileges.php:52 server_privileges.php:621
+#: server_privileges.php:623
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr "限制每小時使用者更改資料表及數據表之指令的數目."
-#: server_privileges.php:53 server_privileges.php:663
-#: server_privileges.php:665
+#: server_privileges.php:53 server_privileges.php:633
+#: server_privileges.php:635
msgid "Limits the number of simultaneous connections the user may have."
msgstr "限制每個使用者之同步連線."
#: server_privileges.php:54 server_privileges.php:197
-#: server_privileges.php:555
+#: server_privileges.php:557
msgid "Allows viewing processes of all users"
msgstr ""
#: server_privileges.php:55 server_privileges.php:199
-#: server_privileges.php:459 server_privileges.php:561
+#: server_privileges.php:459 server_privileges.php:563
msgid "Has no effect in this MySQL version."
msgstr "於本 MySQL 版本無效."
#: server_privileges.php:56 server_privileges.php:195
-#: server_privileges.php:556
+#: server_privileges.php:558
msgid "Allows reloading server settings and flushing the server's caches."
msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶."
#: server_privileges.php:57 server_privileges.php:207
-#: server_privileges.php:563
+#: server_privileges.php:565
msgid "Allows the user to ask where the slaves / masters are."
msgstr "容許用戶查詢 slaves / masters 在何處."
#: server_privileges.php:58 server_privileges.php:206
-#: server_privileges.php:564
+#: server_privileges.php:566
msgid "Needed for the replication slaves."
msgstr "需要複製的 slaves."
#: server_privileges.php:59 server_privileges.php:189
-#: server_privileges.php:450 server_privileges.php:514
+#: server_privileges.php:450 server_privileges.php:516
msgid "Allows reading data."
msgstr "容許讀取數據."
#: server_privileges.php:60 server_privileges.php:202
-#: server_privileges.php:558
+#: server_privileges.php:560
msgid "Gives access to the complete list of databases."
msgstr "可讀取整個資料庫清單."
#: server_privileges.php:61 server_privileges.php:213
-#: server_privileges.php:215 server_privileges.php:530
+#: server_privileges.php:215 server_privileges.php:532
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr "容許執行 SHOW CREATE VIEW 查詢."
#: server_privileges.php:62 server_privileges.php:196
-#: server_privileges.php:557
+#: server_privileges.php:559
msgid "Allows shutting down the server."
msgstr "容許停止伺服器."
#: server_privileges.php:63 server_privileges.php:203
-#: server_privileges.php:554
+#: server_privileges.php:556
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
@@ -7634,13 +7694,13 @@ msgstr ""
"用者指令."
#: server_privileges.php:64 server_privileges.php:210
-#: server_privileges.php:546
+#: server_privileges.php:548
#, fuzzy
msgid "Allows creating and dropping triggers"
msgstr "容許建立及刪除索引."
#: server_privileges.php:65 server_privileges.php:191
-#: server_privileges.php:456 server_privileges.php:516
+#: server_privileges.php:456 server_privileges.php:518
msgid "Allows changing data."
msgstr "容許更新數據."
@@ -7655,232 +7715,232 @@ msgctxt "None privileges"
msgid "None"
msgstr "不適用"
-#: server_privileges.php:442 server_privileges.php:577
-#: server_privileges.php:1824 server_privileges.php:1830
+#: server_privileges.php:442 server_privileges.php:579
+#: server_privileges.php:1797 server_privileges.php:1803
msgid "Table-specific privileges"
msgstr "指定資料表權限"
-#: server_privileges.php:443 server_privileges.php:585
-#: server_privileges.php:1636
+#: server_privileges.php:443 server_privileges.php:587
+#: server_privileges.php:1609
msgid " Note: MySQL privilege names are expressed in English "
msgstr "注意: MySQL 權限名稱會以英語顯示"
-#: server_privileges.php:574 server_privileges.php:1635
-msgid "Global privileges"
-msgstr "整體權限"
-
-#: server_privileges.php:576 server_privileges.php:1824
-msgid "Database-specific privileges"
-msgstr "指定資料庫權限"
-
-#: server_privileges.php:621
+#: server_privileges.php:512
msgid "Administration"
msgstr "系統管理"
-#: server_privileges.php:641
+#: server_privileges.php:576 server_privileges.php:1608
+msgid "Global privileges"
+msgstr "整體權限"
+
+#: server_privileges.php:578 server_privileges.php:1797
+msgid "Database-specific privileges"
+msgstr "指定資料庫權限"
+
+#: server_privileges.php:611
msgid "Resource limits"
msgstr "資源限制"
-#: server_privileges.php:642
+#: server_privileges.php:612
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr "註: 設定這些選項為 0 (零) 可解除限制."
-#: server_privileges.php:719
+#: server_privileges.php:689
msgid "Login Information"
msgstr "登入資訊"
-#: server_privileges.php:813
+#: server_privileges.php:783
msgid "Do not change the password"
msgstr "請不要更改密碼"
-#: server_privileges.php:846 server_privileges.php:2312
+#: server_privileges.php:816 server_privileges.php:2285
#, fuzzy
#| msgid "No user(s) found."
msgid "No user found."
msgstr "找不到使用者"
-#: server_privileges.php:890
+#: server_privileges.php:860
#, php-format
msgid "The user %s already exists!"
msgstr "使用者 %s 己存在!"
-#: server_privileges.php:974
+#: server_privileges.php:944
msgid "You have added a new user."
msgstr "您已新增了一個新使用者."
-#: server_privileges.php:1204
+#: server_privileges.php:1175
#, php-format
msgid "You have updated the privileges for %s."
msgstr "您已經更新了 %s 的權限."
-#: server_privileges.php:1228
+#: server_privileges.php:1199
#, php-format
msgid "You have revoked the privileges for %s"
msgstr "您已移除這位使用者的權限: %s"
-#: server_privileges.php:1264
+#: server_privileges.php:1235
#, php-format
msgid "The password for %s was changed successfully."
msgstr "%s 的密碼已成功更改."
-#: server_privileges.php:1284
+#: server_privileges.php:1255
#, php-format
msgid "Deleting %s"
msgstr "刪除 %s"
-#: server_privileges.php:1298
+#: server_privileges.php:1269
msgid "No users selected for deleting!"
msgstr "並未選擇需要刪除之使用者!"
-#: server_privileges.php:1301
+#: server_privileges.php:1272
msgid "Reloading the privileges"
msgstr "重新讀取權限"
-#: server_privileges.php:1319
+#: server_privileges.php:1290
msgid "The selected users have been deleted successfully."
msgstr "選擇的使用者已成功刪除."
-#: server_privileges.php:1354
+#: server_privileges.php:1325
msgid "The privileges were reloaded successfully."
msgstr "權限已成功重新讀取."
-#: server_privileges.php:1365 server_privileges.php:1755
+#: server_privileges.php:1336 server_privileges.php:1728
msgid "Edit Privileges"
msgstr "編輯權限"
-#: server_privileges.php:1374
+#: server_privileges.php:1345
msgid "Revoke"
msgstr "移除"
-#: server_privileges.php:1401 server_privileges.php:1656
-#: server_privileges.php:2269
+#: server_privileges.php:1372 server_privileges.php:1629
+#: server_privileges.php:2242
msgid "Any"
msgstr "任何"
-#: server_privileges.php:1496
+#: server_privileges.php:1469
msgid "User overview"
msgstr "使用者一覽"
-#: server_privileges.php:1637 server_privileges.php:1829
-#: server_privileges.php:2179
+#: server_privileges.php:1610 server_privileges.php:1802
+#: server_privileges.php:2152
msgid "Grant"
msgstr "授權"
-#: server_privileges.php:1705 server_privileges.php:1729
-#: server_privileges.php:2134 server_privileges.php:2323
+#: server_privileges.php:1678 server_privileges.php:1702
+#: server_privileges.php:2107 server_privileges.php:2296
msgid "Add a new User"
msgstr "新增使用者"
-#: server_privileges.php:1710
+#: server_privileges.php:1683
msgid "Remove selected users"
msgstr "移除已選擇使用者"
-#: server_privileges.php:1713
+#: server_privileges.php:1686
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr "廢除使用者所有有效之權限並刪除."
-#: server_privileges.php:1714 server_privileges.php:1715
-#: server_privileges.php:1716
+#: server_privileges.php:1687 server_privileges.php:1688
+#: server_privileges.php:1689
msgid "Drop the databases that have the same names as the users."
msgstr "刪除與使用者相同名稱之資料庫."
-#: server_privileges.php:1737
+#: server_privileges.php:1710
#, 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."
+"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:1790
+#: server_privileges.php:1763
msgid "The selected user was not found in the privilege table."
msgstr "選擇的使用者在權限資料表內找不到."
-#: server_privileges.php:1830
+#: server_privileges.php:1803
msgid "Column-specific privileges"
msgstr "指定欄位權限"
-#: server_privileges.php:2031
+#: server_privileges.php:2004
msgid "Add privileges on the following database"
msgstr "於以下資料庫加入權限"
-#: server_privileges.php:2049
+#: server_privileges.php:2022
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "萬用符號 _ 及 % 應正確地加入 \\ "
-#: server_privileges.php:2052
+#: server_privileges.php:2025
msgid "Add privileges on the following table"
msgstr "於以下資料表加入權限"
-#: server_privileges.php:2109
+#: server_privileges.php:2082
msgid "Change Login Information / Copy User"
msgstr "更改登入資訊 / 複製使用者"
-#: server_privileges.php:2112
+#: server_privileges.php:2085
msgid "Create a new user with the same privileges and ..."
msgstr "建立新使用者及使用相同之權限, 及 ..."
-#: server_privileges.php:2114
+#: server_privileges.php:2087
msgid "... keep the old one."
msgstr "... 保留舊使用者."
-#: server_privileges.php:2115
+#: server_privileges.php:2088
msgid " ... delete the old one from the user tables."
msgstr " ... 刪除舊使用者."
-#: server_privileges.php:2116
+#: server_privileges.php:2089
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr " ... 廢除所有舊使用者有效之權限並刪除."
-#: server_privileges.php:2117
+#: server_privileges.php:2090
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr " ... 刪除舊使用者及重新讀取權限資料表."
-#: server_privileges.php:2140
+#: server_privileges.php:2113
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2144
+#: server_privileges.php:2117
#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "不適用"
-#: server_privileges.php:2145
+#: server_privileges.php:2118
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2146
+#: server_privileges.php:2119
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2149
+#: server_privileges.php:2122
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "查詢資料庫 "%s" 之權限."
-#: server_privileges.php:2172
+#: server_privileges.php:2145
#, php-format
msgid "Users having access to "%s""
msgstr "可讀取 "%s" 之使用者"
-#: server_privileges.php:2280
+#: server_privileges.php:2253
msgid "global"
msgstr "整體"
-#: server_privileges.php:2282
+#: server_privileges.php:2255
msgid "database-specific"
msgstr "指定資料庫"
-#: server_privileges.php:2284
+#: server_privileges.php:2257
msgid "wildcard"
msgstr "萬用字元"
@@ -8895,7 +8955,7 @@ msgstr "程序數值"
msgid "Global value"
msgstr "整體值"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:213
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225
msgid "Download"
msgstr ""
@@ -8927,57 +8987,69 @@ msgstr ""
msgid "Insecure connection"
msgstr ""
-#: setup/frames/index.inc.php:88 setup/frames/menu.inc.php:15
+#: setup/frames/index.inc.php:92
+#, fuzzy
+#| msgid "Modifications have been saved"
+msgid "Configuration saved."
+msgstr "修改已儲存"
+
+#: setup/frames/index.inc.php:93
+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 ""
+
+#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
msgid "Overview"
msgstr ""
-#: setup/frames/index.inc.php:96
+#: setup/frames/index.inc.php:108
msgid "Show hidden messages (#MSG_COUNT)"
msgstr ""
-#: setup/frames/index.inc.php:136
+#: setup/frames/index.inc.php:148
msgid "There are no configured servers"
msgstr ""
-#: setup/frames/index.inc.php:144
+#: setup/frames/index.inc.php:156
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:173
+#: setup/frames/index.inc.php:185
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:183
+#: setup/frames/index.inc.php:195
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:194
+#: setup/frames/index.inc.php:206
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:197
+#: setup/frames/index.inc.php:209
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:219
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:212
+#: setup/frames/index.inc.php:224
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:216
+#: setup/frames/index.inc.php:228
#, fuzzy
msgid "Load"
msgstr "本地"
-#: setup/frames/index.inc.php:227
+#: setup/frames/index.inc.php:239
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin 說明文件"
-#: setup/frames/index.inc.php:228
+#: setup/frames/index.inc.php:240
msgid "Donate"
msgstr ""
@@ -9204,62 +9276,62 @@ msgstr "選擇的使用者已成功刪除."
msgid "Function"
msgstr "函數"
-#: tbl_change.php:755
+#: tbl_change.php:758
#, fuzzy
#| msgid " Because of its length,
this field might not be editable "
msgid " Because of its length,
this column might not be editable "
msgstr " 由於長度限制
此欄位不能編輯 "
-#: tbl_change.php:872
+#: tbl_change.php:875
msgid "Remove BLOB Repository Reference"
msgstr ""
-#: tbl_change.php:878
+#: tbl_change.php:881
msgid "Binary - do not edit"
msgstr "二進制碼 - 不能編輯"
-#: tbl_change.php:926
+#: tbl_change.php:929
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1055
+#: tbl_change.php:1058
msgid "Insert as new row"
msgstr "儲存為新記錄"
-#: tbl_change.php:1056
+#: tbl_change.php:1059
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1057
+#: tbl_change.php:1060
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1068
+#: tbl_change.php:1071
msgid "and then"
msgstr "然後"
-#: tbl_change.php:1072
+#: tbl_change.php:1075
msgid "Go back to previous page"
msgstr "返回"
-#: tbl_change.php:1073
+#: tbl_change.php:1076
msgid "Insert another new row"
msgstr "新增一筆記錄"
-#: tbl_change.php:1077
+#: tbl_change.php:1080
msgid "Go back to this page"
msgstr "返回這頁"
-#: tbl_change.php:1085
+#: tbl_change.php:1088
msgid "Edit next row"
msgstr "編輯新一列"
-#: tbl_change.php:1096
+#: tbl_change.php:1099
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr "按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動"
-#: tbl_change.php:1134
+#: tbl_change.php:1137
#, php-format
msgid "Continue insertion with %s rows"
msgstr ""
@@ -9419,7 +9491,7 @@ msgstr "(\"PRIMARY\" 必須是主鍵的名稱以及是唯一一組
msgid "Add to index %s column(s)"
msgstr "新增 %s 組索引欄"
-#: tbl_indexes.php:254 tbl_structure.php:682 tbl_structure.php:693
+#: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695
msgid "Column count has to be larger than zero."
msgstr "欄位數目需要大於零."
@@ -9445,105 +9517,105 @@ msgstr "已經將資料表 %s 複製為 %s."
msgid "The table name is empty!"
msgstr "請輸入資料表名稱!"
-#: tbl_operations.php:260
+#: tbl_operations.php:265
msgid "Alter table order by"
msgstr "根據欄位內容排序記錄"
-#: tbl_operations.php:269
+#: tbl_operations.php:274
msgid "(singly)"
msgstr "(只會排序現時的記錄)"
-#: tbl_operations.php:289
+#: tbl_operations.php:294
msgid "Move table to (database.table):"
msgstr "移動資料表到:(格式為 資料庫名稱.資料表名稱)"
-#: tbl_operations.php:347
+#: tbl_operations.php:352
msgid "Table options"
msgstr "資料表選項"
-#: tbl_operations.php:351
+#: tbl_operations.php:356
msgid "Rename table to"
msgstr "將資料表改名為"
-#: tbl_operations.php:527
+#: tbl_operations.php:532
msgid "Copy table to (database.table):"
msgstr "複製資料表到: (格式為 資料庫名稱.資料表名稱):"
-#: tbl_operations.php:574
+#: tbl_operations.php:579
msgid "Switch to copied table"
msgstr "跳到已複製之資料表"
-#: tbl_operations.php:586
+#: tbl_operations.php:591
msgid "Table maintenance"
msgstr "資料表維護"
-#: tbl_operations.php:610
+#: tbl_operations.php:615
msgid "Defragment table"
msgstr "整理資料表"
-#: tbl_operations.php:658
+#: tbl_operations.php:663
#, php-format
msgid "Table %s has been flushed"
msgstr "資料表 %s 已被強迫更新"
-#: tbl_operations.php:664
+#: tbl_operations.php:669
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "強迫更新資料表 (\"FLUSH\")"
-#: tbl_operations.php:673
+#: tbl_operations.php:678
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "列出以下資料庫的數據:"
-#: tbl_operations.php:688
+#: tbl_operations.php:693
msgid "Empty the table (TRUNCATE)"
msgstr ""
-#: tbl_operations.php:708
+#: tbl_operations.php:713
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "沒有資料庫"
-#: tbl_operations.php:729
+#: tbl_operations.php:734
#, fuzzy
msgid "Partition maintenance"
msgstr "資料表維護"
-#: tbl_operations.php:737
+#: tbl_operations.php:742
#, php-format
msgid "Partition %s"
msgstr ""
-#: tbl_operations.php:740
+#: tbl_operations.php:745
msgid "Analyze"
msgstr ""
-#: tbl_operations.php:741
+#: tbl_operations.php:746
#, fuzzy
msgid "Check"
msgstr "捷克語"
-#: tbl_operations.php:742
+#: tbl_operations.php:747
msgid "Optimize"
msgstr ""
-#: tbl_operations.php:743
+#: tbl_operations.php:748
msgid "Rebuild"
msgstr ""
-#: tbl_operations.php:744
+#: tbl_operations.php:749
#, fuzzy
msgid "Repair"
msgstr "修復資料表"
-#: tbl_operations.php:756
+#: tbl_operations.php:761
msgid "Remove partitioning"
msgstr ""
-#: tbl_operations.php:782
+#: tbl_operations.php:787
msgid "Check referential integrity:"
msgstr "檢查指示完整性:"
@@ -9551,39 +9623,39 @@ msgstr "檢查指示完整性:"
msgid "Show tables"
msgstr "顯示資料表"
-#: tbl_printview.php:307 tbl_structure.php:749
+#: tbl_printview.php:307 tbl_structure.php:751
msgid "Space usage"
msgstr "已使用空間"
-#: tbl_printview.php:311 tbl_structure.php:753
+#: tbl_printview.php:311 tbl_structure.php:755
msgid "Usage"
msgstr "使用"
-#: tbl_printview.php:338 tbl_structure.php:780
+#: tbl_printview.php:338 tbl_structure.php:782
msgid "Effective"
msgstr "實際"
-#: tbl_printview.php:363 tbl_structure.php:818
+#: tbl_printview.php:363 tbl_structure.php:820
msgid "Row Statistics"
msgstr "資料列統計數值"
-#: tbl_printview.php:366 tbl_structure.php:821
+#: tbl_printview.php:366 tbl_structure.php:823
msgid "Statements"
msgstr "敘述"
-#: tbl_printview.php:377 tbl_structure.php:833
+#: tbl_printview.php:377 tbl_structure.php:835
msgid "static"
msgstr ""
-#: tbl_printview.php:379 tbl_structure.php:835
+#: tbl_printview.php:379 tbl_structure.php:837
msgid "dynamic"
msgstr "動態"
-#: tbl_printview.php:401 tbl_structure.php:878
+#: tbl_printview.php:401 tbl_structure.php:880
msgid "Row length"
msgstr "資料列長度"
-#: tbl_printview.php:411 tbl_structure.php:886
+#: tbl_printview.php:411 tbl_structure.php:888
msgid " Row size "
msgstr "資料列大小"
@@ -9667,57 +9739,57 @@ msgstr "不適用"
msgid "Column %s has been dropped"
msgstr "資料表 %s 已被刪除"
-#: tbl_structure.php:409 tbl_structure.php:484
+#: tbl_structure.php:409 tbl_structure.php:483
#, php-format
msgid "A primary key has been added on %s"
msgstr "主鍵已經新增到 %s"
#: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454
-#: tbl_structure.php:497 tbl_structure.php:510 tbl_structure.php:523
+#: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522
#, php-format
msgid "An index has been added on %s"
msgstr "索引已經新增到 %s"
-#: tbl_structure.php:472
+#: tbl_structure.php:471
#, fuzzy
#| msgid "Show PHP information"
msgid "Show more actions"
msgstr "顯示 PHP 資訊"
-#: tbl_structure.php:598 tbl_structure.php:600
+#: tbl_structure.php:600 tbl_structure.php:602
msgid "Relation view"
msgstr "關聯檢視"
-#: tbl_structure.php:607 tbl_structure.php:609
+#: tbl_structure.php:609 tbl_structure.php:611
msgid "Propose table structure"
msgstr "分析資料表結構"
-#: tbl_structure.php:632
+#: tbl_structure.php:634
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add column"
msgstr "新增 %s 個欄位"
-#: tbl_structure.php:646
+#: tbl_structure.php:648
msgid "At End of Table"
msgstr "於資料表尾端"
-#: tbl_structure.php:647
+#: tbl_structure.php:649
msgid "At Beginning of Table"
msgstr "於資料表開頭"
-#: tbl_structure.php:648
+#: tbl_structure.php:650
#, php-format
msgid "After %s"
msgstr "在 %s 之後"
-#: tbl_structure.php:687
+#: tbl_structure.php:689
#, fuzzy, php-format
#| msgid "Create an index on %s columns"
msgid "Create an index on %s columns"
msgstr "新增 %s 組索引欄"
-#: tbl_structure.php:849
+#: tbl_structure.php:851
msgid "partitioned"
msgstr ""
@@ -9745,108 +9817,138 @@ msgstr ""
msgid "SQL statements executed."
msgstr ""
-#: tbl_tracking.php:215
+#: tbl_tracking.php:214
msgid ""
"You can execute the dump by creating and using a temporary database. Please "
"ensure that you have the privileges to do so."
msgstr ""
-#: tbl_tracking.php:216
+#: tbl_tracking.php:215
msgid "Comment out these two lines if you do not need them."
msgstr "如果您不需要,請將這兩行註解掉"
-#: tbl_tracking.php:225
+#: tbl_tracking.php:224
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr "SQL語句已匯出,請複製或執行此dump"
-#: tbl_tracking.php:256
+#: tbl_tracking.php:255
#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
-#: tbl_tracking.php:375
+#: tbl_tracking.php:382
+#, fuzzy
+#| msgid "Track these data definition statements:"
+msgid "Tracking data definition succesfully deleted"
+msgstr "追蹤這些資料定義的語句:"
+
+#: tbl_tracking.php:384 tbl_tracking.php:401
+#, fuzzy
+#| msgid "Query type"
+msgid "Query error"
+msgstr "查詢方式"
+
+#: tbl_tracking.php:399
+#, fuzzy
+#| msgid "Track these data manipulation statements:"
+msgid "Tracking data manipulation succesfully deleted"
+msgstr "追蹤這些資料模擬的語句:"
+
+#: tbl_tracking.php:411
msgid "Tracking statements"
msgstr "追蹤語句"
-#: tbl_tracking.php:391 tbl_tracking.php:498
+#: tbl_tracking.php:427 tbl_tracking.php:555
#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
-#: tbl_tracking.php:404 tbl_tracking.php:455
+#: tbl_tracking.php:432
+#, fuzzy
+#| msgid "Delete tracking data for this table"
+msgid "Delete tracking data row from report"
+msgstr "刪除此資料表的追蹤資料"
+
+#: tbl_tracking.php:443
+#, fuzzy
+#| msgid "No databases"
+msgid "No data"
+msgstr "沒有資料庫"
+
+#: tbl_tracking.php:453 tbl_tracking.php:510
#, fuzzy
msgid "Date"
msgstr "資料"
-#: tbl_tracking.php:406
+#: tbl_tracking.php:455
msgid "Data definition statement"
msgstr "資料定義語句"
-#: tbl_tracking.php:457
+#: tbl_tracking.php:512
msgid "Data manipulation statement"
msgstr "資料模擬語句"
-#: tbl_tracking.php:501
+#: tbl_tracking.php:558
msgid "SQL dump (file download)"
msgstr ""
-#: tbl_tracking.php:502
+#: tbl_tracking.php:559
msgid "SQL dump"
msgstr ""
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "This option will replace your table and contained data."
msgstr "這個選項將覆蓋您的資料表與其資料"
-#: tbl_tracking.php:503
+#: tbl_tracking.php:560
msgid "SQL execution"
msgstr "執行SQL"
-#: tbl_tracking.php:515
+#: tbl_tracking.php:572
#, php-format
msgid "Export as %s"
msgstr "匯出為 %s"
-#: tbl_tracking.php:555
+#: tbl_tracking.php:612
msgid "Show versions"
msgstr ""
-#: tbl_tracking.php:587
+#: tbl_tracking.php:644
msgid "Version"
msgstr "版本"
-#: tbl_tracking.php:635
+#: tbl_tracking.php:692
#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr "停用對 %s.%s 的追蹤"
-#: tbl_tracking.php:637
+#: tbl_tracking.php:694
msgid "Deactivate now"
msgstr "現在停用"
-#: tbl_tracking.php:648
+#: tbl_tracking.php:705
#, php-format
msgid "Activate tracking for %s.%s"
msgstr "啟用對 %s.%s 的追蹤"
-#: tbl_tracking.php:650
+#: tbl_tracking.php:707
msgid "Activate now"
msgstr "現在啟用"
-#: tbl_tracking.php:663
+#: tbl_tracking.php:720
#, php-format
msgid "Create version %s of %s.%s"
msgstr "建立 %s.%s 的版本 %s"
-#: tbl_tracking.php:667
+#: tbl_tracking.php:724
msgid "Track these data definition statements:"
msgstr "追蹤這些資料定義的語句:"
-#: tbl_tracking.php:675
+#: tbl_tracking.php:732
msgid "Track these data manipulation statements:"
msgstr "追蹤這些資料模擬的語句:"
-#: tbl_tracking.php:683
+#: tbl_tracking.php:740
msgid "Create version"
msgstr "建立版本"
diff --git a/prefs_forms.php b/prefs_forms.php
index 22ffb4cf5b..4aaea9c2bc 100644
--- a/prefs_forms.php
+++ b/prefs_forms.php
@@ -23,7 +23,7 @@ PMA_userprefs_pageinit();
// handle form processing
$form_param = filter_input(INPUT_GET, 'form');
-if (!isset($forms[$form_param])) {
+if (! isset($forms[$form_param])) {
$forms_keys = array_keys($forms);
$form_param = array_shift($forms_keys);
}
diff --git a/prefs_manage.php b/prefs_manage.php
index e5dbe3f906..ec1b481176 100644
--- a/prefs_manage.php
+++ b/prefs_manage.php
@@ -76,7 +76,7 @@ if (isset($_POST['submit_export']) && filter_input(INPUT_POST, 'export_type') ==
$config = json_decode($json, true);
$return_url = filter_input(INPUT_POST, 'return_url');
- if (!is_array($config)) {
+ if (! is_array($config)) {
$error = __('Could not import configuration');
} else {
// sanitize input values: treat them as though they came from HTTP POST request
diff --git a/schema_edit.php b/schema_edit.php
index a5d3a38ce1..9b71500b92 100644
--- a/schema_edit.php
+++ b/schema_edit.php
@@ -41,24 +41,24 @@ $query_default_option = PMA_DBI_QUERY_STORE;
* correctly, so it is a good place to see which tables we can and
* complain ;-)
*/
-if (!$cfgRelation['relwork']) {
+if (! $cfgRelation['relwork']) {
echo sprintf(__('%s table not found or not set in %s'), 'relation', 'config.inc.php') . '
' . "\n"
. PMA_showDocu('relation') . "\n";
require_once './libraries/footer.inc.php';
}
-if (!$cfgRelation['displaywork']) {
+if (! $cfgRelation['displaywork']) {
echo sprintf(__('%s table not found or not set in %s'), 'table_info', 'config.inc.php') . '
' . "\n"
. PMA_showDocu('table_info') . "\n";
require_once './libraries/footer.inc.php';
}
-if (!isset($cfgRelation['table_coords'])){
+if (! isset($cfgRelation['table_coords'])){
echo sprintf(__('%s table not found or not set in %s'), 'table_coords', 'config.inc.php') . '
' . "\n"
. PMA_showDocu('table_coords') . "\n";
require_once './libraries/footer.inc.php';
}
-if (!isset($cfgRelation['pdf_pages'])) {
+if (! isset($cfgRelation['pdf_pages'])) {
echo sprintf(__('%s table not found or not set in %s'), 'pdf_page', 'config.inc.php') . '
' . "\n"
. PMA_showDocu('pdf_pages') . "\n";
require_once './libraries/footer.inc.php';
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index cd91e9945c..0589c28d8b 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -241,17 +241,15 @@ if [ $# -gt 0 ] ; then
git tag -a -m "Released $version" $tagname $branch
if echo $version | grep -q '^2\.11\.' ; then
echo '* 2.11 branch, no STABLE/TESTING update'
+ elif echo $version | grep -q '^3\.3\.' ; then
+ echo '* 3.3 branch, no STABLE/TESTING update'
else
if echo $version | grep '[a-z_-]' ; then
mark_as_release $branch TESTING
else
# We update both branches here
# As it does not make sense to have older testing than stable
- if echo $version | grep -q '^3\.3\.' ; then
- echo '* 3.3 branch, no TESTING update'
- else
- mark_as_release $branch TESTING
- fi
+ mark_as_release $branch TESTING
mark_as_release $branch STABLE
fi
git checkout master
diff --git a/scripts/remove-incomplete-mo b/scripts/remove-incomplete-mo
index 02069f9281..d9e485c1e9 100755
--- a/scripts/remove-incomplete-mo
+++ b/scripts/remove-incomplete-mo
@@ -51,6 +51,8 @@ check() {
if [ $PERCENT -lt $THRESHOLD ] ; then
echo "Removing $lang, only $PERCENT%"
rm -f locale/$lang/LC_MESSAGES/phpmyadmin.mo
+ rmdir locale/$lang/LC_MESSAGES
+ rmdir locale/$lang
fi
}
diff --git a/server_privileges.php b/server_privileges.php
index 19f9dcb999..44adb0d10d 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -270,7 +270,7 @@ function PMA_extractPrivInfo($row = '', $enableHTML = FALSE)
} else {
$privs[] = 'USAGE';
}
- } elseif ($allPrivileges && (!isset($GLOBALS['grant_count']) || count($privs) == $GLOBALS['grant_count'])) {
+ } elseif ($allPrivileges && (! isset($GLOBALS['grant_count']) || count($privs) == $GLOBALS['grant_count'])) {
if ($enableHTML) {
$privs = array('ALL PRIVILEGES');
} else {
@@ -509,6 +509,8 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE)
// g l o b a l o r d b - s p e c i f i c
//
+ $privTable_names = array(0 => __('Data'), 1 => __('Structure'), 2 => __('Administration'));
+
// d a t a
$privTable[0] = array(
array('Select', 'SELECT', __('Allows reading data.')),
@@ -582,59 +584,27 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE)
. $GLOBALS['url_query'] . '" onclick="setCheckboxes(\'addUsersForm_' . $random_n . '\', false); return false;">'
. __('Uncheck All') . ')' . "\n"
. ' ' . "\n"
- . ' ' . __(' Note: MySQL privilege names are expressed in English ') . '
' . "\n"
- . ' ' . "\n"
- . ' ' . "\n"
- . ' ' . "\n";
// The "Resource limits" box is not displayed for db-specific privs
if ($db == '*') {
echo ' ' . "\n"
@@ -725,7 +695,7 @@ function PMA_displayLoginInformationFields($mode = 'new')
. ' ' . "\n"
. '' . "\n"
. '
- />
+ />
- value="3306" maxlength="5" size="5" />
+ value="3306" maxlength="5" size="5" />
- />
+ />
- />
+ />
- />
+
- />
+